1
0
Fork 0
peertube/scripts/upgrade.sh

29 lines
551 B
Bash
Raw Normal View History

2016-10-21 12:23:20 +00:00
#!/usr/bin/env sh
2017-04-26 20:32:33 +00:00
nodeMinVersion="v6.0.0"
npmMinVersion="3.0.0"
2016-10-21 12:23:20 +00:00
2017-04-26 20:32:33 +00:00
if [[ $(node --version) < $nodeMinVersion ]]; then
echo 'You need node >= 6'
exit 0
fi
if [[ $(npm --version) < $npmMinVersion ]]; then
echo 'You need npm >= 3'
exit 0
fi
2016-10-21 12:23:20 +00:00
2016-10-21 12:46:17 +00:00
if pgrep peertube > /dev/null; then
2016-10-21 12:23:20 +00:00
echo 'PeerTube is running!'
exit 0
fi
2017-04-26 20:32:33 +00:00
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
2016-10-21 12:23:20 +00:00
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."