]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/upgrade.sh
59deae1ebf8658bcabd207967d5286bd6d92e5cd
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
1 #!/usr/bin/env sh
2
3 nodeMinVersion="v6.0.0"
4 npmMinVersion="3.0.0"
5
6 if [[ $(node --version) < $nodeMinVersion ]]; then
7 echo 'You need node >= 6'
8 exit 0
9 fi
10
11 if [[ $(npm --version) < $npmMinVersion ]]; then
12 echo 'You need npm >= 3'
13 exit 0
14 fi
15
16 if pgrep peertube > /dev/null; then
17 echo 'PeerTube is running!'
18 exit 0
19 fi
20
21 git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
22
23 npm install
24 npm update
25 cd client && npm update && cd ../
26 npm run build
27
28 echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."