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