PeerTube/scripts/upgrade-peertube.sh

39 lines
741 B
Bash
Raw Normal View History

2017-04-27 15:36:35 +02:00
#!/bin/bash
2016-10-21 14:23:20 +02:00
verlte() {
[ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ]
}
nodeMinVersion="6.0.0"
2017-04-26 22:32:33 +02:00
npmMinVersion="3.0.0"
2016-10-21 14:23:20 +02:00
actualNodeVersion=$(node --version | tr -d "v")
actualNpmVersion=$(npm --version)
if verlte $actualNodeVersion $nodeMinVersion; then
2017-04-26 22:32:33 +02:00
echo 'You need node >= 6'
exit 0
fi
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
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
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."