aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/upgrade.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/upgrade.sh')
-rwxr-xr-xscripts/upgrade.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh
new file mode 100755
index 000000000..1299ac55a
--- /dev/null
+++ b/scripts/upgrade.sh
@@ -0,0 +1,16 @@
1#!/usr/bin/env sh
2
3
4git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
5
6if [[ `pgrep peertube` > /dev/null ]]; then
7 echo 'PeerTube is running!'
8 exit 0
9fi
10
11npm install
12npm update
13cd client && npm update && cd ../
14npm run build
15
16echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."