oliverdavies.uk/publish.sh

8 lines
303 B
Bash
Raw Normal View History

2015-11-30 23:10:03 +00:00
#!/bin/bash
./vendor/bin/sculpin generate --env=prod --clean --no-interaction
if [ $? -ne 0 ]; then echo "Could not generate the site"; exit 1; fi
rsync -av output_prod/ deployment@oliverdavies.uk:/var/www/vhosts/oliverdavies/public
if [ $? -ne 0 ]; then echo "Could not publish the site"; exit 1; fi