2017-04-27 15:36:35 +02:00
|
|
|
#!/bin/bash
|
2016-10-21 14:23:20 +02:00
|
|
|
|
2017-07-10 15:01:05 +02:00
|
|
|
verlte() {
|
|
|
|
[ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ]
|
|
|
|
}
|
|
|
|
|
2017-12-14 10:20:05 +01:00
|
|
|
nodeMinVersion="8.0.0"
|
2017-04-26 22:32:33 +02:00
|
|
|
npmMinVersion="3.0.0"
|
2016-10-21 14:23:20 +02:00
|
|
|
|
2017-07-10 15:01:05 +02:00
|
|
|
actualNodeVersion=$(node --version | tr -d "v")
|
|
|
|
actualNpmVersion=$(npm --version)
|
|
|
|
|
|
|
|
if verlte $actualNodeVersion $nodeMinVersion; then
|
2017-12-14 10:20:05 +01:00
|
|
|
echo 'You need node >= 8'
|
2017-04-26 22:32:33 +02:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-07-10 15:01:05 +02:00
|
|
|
if verlte $actualNpmVersion $npmMinVersion; then
|
2017-04-26 22:32:33 +02:00
|
|
|
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
|
2017-10-16 10:05:49 +02:00
|
|
|
echo 'PeerTube is running, please shut it off before upgrading'
|
2016-10-21 14:23:20 +02:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-04-26 22:32:33 +02:00
|
|
|
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
|
|
|
|
|
2017-06-24 10:17:44 +02:00
|
|
|
yarn install --pure-lockfile
|
2016-10-21 14:23:20 +02:00
|
|
|
npm run build
|
|
|
|
|
2017-07-23 09:40:28 +02:00
|
|
|
echo -e "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
|