1
0
Fork 0
peertube/scripts/upgrade-peertube.sh

39 lines
777 B
Bash
Raw Normal View History

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