2017-04-27 09:36:35 -04:00
|
|
|
#!/bin/bash
|
2016-10-21 08:23:20 -04:00
|
|
|
|
2017-04-26 16:32:33 -04:00
|
|
|
nodeMinVersion="v6.0.0"
|
|
|
|
npmMinVersion="3.0.0"
|
2016-10-21 08:23:20 -04:00
|
|
|
|
2017-04-26 16:32:33 -04: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 08:23:20 -04:00
|
|
|
|
2017-04-27 05:38:42 -04:00
|
|
|
if ! which yarn > /dev/null; then
|
|
|
|
echo 'You need yarn'
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
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
|
|
|
|
|
2017-04-26 16:32:33 -04:00
|
|
|
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
|
|
|
|
|
2017-04-27 05:38:42 -04:00
|
|
|
yarn install
|
2017-04-27 10:00:10 -04:00
|
|
|
yarn upgrade
|
|
|
|
cd client && yarn upgrade && cd ../
|
2016-10-21 08:23:20 -04:00
|
|
|
npm run build
|
|
|
|
|
|
|
|
echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
|