diff options
author | emkael <emkael@tlen.pl> | 2017-06-15 23:46:57 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-06-15 23:46:57 +0200 |
commit | f082f7c25fba7d7064a2bbda0dd9cc1d0babfb35 (patch) | |
tree | 3788772fe294ef50d5a41a9c7b1f0c0ea4f95c63 /bin | |
parent | 1bd357ec8967e5b6c04e737dc6639162477064f1 (diff) |
`deploy` target in separate executable, more flexible
Fixes #3
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/deploy.sh | 8 |
1 files changed, 8 insertions, 0 deletions
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 |