summaryrefslogtreecommitdiff
path: root/bin/deploy.sh
blob: dafc4bfa02eebc6dcf60736620c0537588a6602a (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
LOCALPATH=$1
DEPLOYPATH=`cat config/deploy-path`
RSYNCOPTS='-urpP --delete --exclude=.menu.html'
if [ -s config/deploy-pass ]
then
    sshpass -f config/deploy-pass rsync $RSYNCOPTS $LOCALPATH/ $DEPLOYPATH
else
    rsync $RSYNCOPTS $LOCALPATH/ $DEPLOYPATH
fi
echo 'Remember to push CSV datafiles to GitHub!'