mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 06:34:17 +00:00
16 lines
324 B
Bash
Executable file
16 lines
324 B
Bash
Executable file
#!/bin/sh
|
|
|
|
find . -name "*.php" -print0 | xargs -0 -n1 php -l
|
|
if [ $? -ne 0 ]; then
|
|
echo "not deploying b0rken code ;)"
|
|
exit 1
|
|
fi
|
|
|
|
ssh -A voc@lb.dus.c3voc.de 'sudo sh' << EOT
|
|
cd /srv/nginx/streaming-website
|
|
git fetch origin
|
|
git reset --hard origin/master
|
|
chown -R voc:staff .
|
|
chown -R downloader configs
|
|
./clear_cache
|
|
EOT
|