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