aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/upgrade.sh
blob: 022e76107dd9ac2ae04ea6c9841198322bb73e29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env sh


git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1

if pgrep peertube > /dev/null; then
  echo 'PeerTube is running!'
  exit 0
fi

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."