1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00
Peertube/scripts/upgrade.sh
2016-10-21 14:46:17 +02:00

16 lines
324 B
Bash
Executable file

#!/usr/bin/env sh
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
if pgrep peertube > /dev/null; then
echo 'PeerTube is running!'
exit 0
fi
npm install
npm update
cd client && npm update && cd ../
npm run build
echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."