summaryrefslogtreecommitdiffstats
path: root/run.sh
blob: 0acb78615b6face4350cbc51473a703a73f40fd0 (plain)
1
2
3
4
5
6
7
#!/bin/sh
. ./bin/activate
pip2 install -r requirements.txt
./bin/pelican content -s pelicanconf.py || exit
if [ "$REALLY_DEPLOY" = "1" ]; then
    rsync -e "ssh -i $HOME/.ssh/twir_deploy_key" -razvP --delete-after output/ twir@octayn.net:production
fi