aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--justfile4
1 files changed, 1 insertions, 3 deletions
diff --git a/justfile b/justfile
index 67528c2..312bf01 100644
--- a/justfile
+++ b/justfile
@@ -9,7 +9,7 @@ ssh *args:
shell: ssh
copy *args:
- rsync -ravh --delete --exclude '.git' -e "ssh -p $SSH_PORT" "$@"
+ rsync -ravh --delete --exclude '.git' --exclude 'tmp' -e "ssh -p $SSH_PORT" "$@"
df:
just ssh 'df -ah /'
@@ -17,8 +17,6 @@ df:
upload:
just copy . "${SSH_USER}@${SSH_HOST}:{{TARGET_DIR}}"
-restart-remote: (setup "start")
-
setup *args:
just ssh "{{TARGET_DIR}}/setup.sh" "$@"