lint php-files before deploying

This commit is contained in:
Peter Körner 2016-10-12 09:35:01 +02:00
parent 1bf0241f24
commit ade5db5f82

View file

@ -1,4 +1,11 @@
#!/bin/sh
find . -name "*.php" -print0 | xargs -0 -n1 php -l
if [ $? -ne 0 ]; then
echo "not deploying b0rken code ;)"
exit 1
fi
ssh voc@lb.dus.c3voc.de 'sudo sh' << EOT
cd /srv/nginx/streaming-website
git fetch origin