Add deploy shell script

This commit is contained in:
Ariejan de Vroom 2015-03-26 13:48:12 +01:00
parent 7e2a0196cd
commit e5707f59bc

15
deploy.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
source=public/
target=apps@spock.ariejan.net:/home/apps/sites/ariejan.net
if [ -d ./public ] ; then
echo "-- Pruning current static files from ./${source}"
rm -rf ./${source}
fi
echo "-- Generating website to ./${source}"
hugo
echo "-- Uploading using rsync to ${target}"
rsync -aqz --delete-after --no-progress ${source} -e ssh ${target}