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