From 2d13b29965482cebfd2070d5acf010af75416925 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 15 Jan 2018 18:23:17 +0100 Subject: Remove npm run upgrade Use command from production.md instead --- scripts/upgrade-peertube.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 scripts/upgrade-peertube.sh (limited to 'scripts') diff --git a/scripts/upgrade-peertube.sh b/scripts/upgrade-peertube.sh deleted file mode 100755 index bfef38264..000000000 --- a/scripts/upgrade-peertube.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -verlte() { - [ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ] -} - -nodeMinVersion="8.0.0" -npmMinVersion="3.0.0" - -actualNodeVersion=$(node --version | tr -d "v") -actualNpmVersion=$(npm --version) - -if verlte $actualNodeVersion $nodeMinVersion; then - echo 'You need node >= 8' - exit 0 -fi - -if verlte $actualNpmVersion $npmMinVersion; then - echo 'You need npm >= 3' - exit 0 -fi - -if ! which yarn > /dev/null; then - echo 'You need yarn' - exit 0 -fi - -if pgrep peertube > /dev/null; then - echo 'PeerTube is running, please shut it off before upgrading' - exit 0 -fi - -git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1 - -yarn install --pure-lockfile -npm run build - -echo -e "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts." -- cgit v1.2.3