2016-10-21 08:23:20 -04:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
|
|
|
|
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
|
|
|
|
|
2016-10-21 08:46:17 -04:00
|
|
|
if pgrep peertube > /dev/null; then
|
2016-10-21 08:23:20 -04:00
|
|
|
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."
|