summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rwxr-xr-xbin/deploy.sh8
2 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d86fb89..8283fa9 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ all: rankings players
minimize: $(tmpfiles)
deploy:
- sshpass -p `cat config/deploy-pass` rsync -urpP http/ `cat config/deploy-path`
+ bin/deploy.sh
rankings: tables editions
diff --git a/bin/deploy.sh b/bin/deploy.sh
new file mode 100755
index 0000000..39812e4
--- /dev/null
+++ b/bin/deploy.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+DEPLOYPATH=`cat config/deploy-path`
+if [ -s config/deploy-pass ]
+then
+ sshpass -p `cat config/deploy-pass` rsync -urpP http/ $DEPLOYPATH
+else
+ rsync -urpP http/ $DEPLOYPATH
+fi