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