diff options
author | dan <[email protected]> | 2024-04-30 22:34:36 -0400 |
---|---|---|
committer | dan <[email protected]> | 2024-04-30 22:34:36 -0400 |
commit | a60a07df986cb36c9305c5e89269fe9fc2145122 (patch) | |
tree | ba9fd62849982728873c34b58741d2e303330b35 | |
parent | 9aaec11618fda177f44bcd2b2c38bbbf6680f4b7 (diff) | |
download | 54-a60a07df986cb36c9305c5e89269fe9fc2145122.tar.gz 54-a60a07df986cb36c9305c5e89269fe9fc2145122.tar.bz2 54-a60a07df986cb36c9305c5e89269fe9fc2145122.zip |
fix: makefile doesn't contain multiple `deploy` actionsno-image-upload
-rw-r--r-- | makefile | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -1,9 +1,5 @@ -build: ./main.scm build-cpp +build: ./main.scm # build-cpp mkdir -p ./build -# chicken-csc -static ./main.scm \ -# -L -lsqlite3 \ -# -L lib/exif_wrapper.o \ -# -C -Ilib/ chicken-csc -static ./main.scm \ -L -lsqlite3 \ -L -lcrypt @@ -16,13 +12,6 @@ build-cpp: run: build ./build/main -deploy: build - cp ./style.css ./build/style.css - cp ./favicon_io/favicon.ico ./build/favicon.ico - scp ./build/* dotemgo-tasks_root:/root/ - ssh dotemgo-tasks_root 'systemctl stop itter.service \ - && mv /root/main /root/54itter \ - && systemctl start itter.service' upload-service: scp itter.service dotemgo-tasks_root:/etc/systemd/system/ ssh dotemgo-tasks_root 'systemctl daemon-reload && systemctl restart itter.service' |