From 4f133041819409a72cf70fa2fa6c4df14c6de4fd Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 25 Jun 2017 16:30:45 +0200 Subject: Rename 'npm run upgrade' to 'npm run upgrade-peertube' It was confusing with the command 'npm run update' --- scripts/upgrade-peertube.sh | 31 +++++++++++++++++++++++++++++++ scripts/upgrade.sh | 31 ------------------------------- 2 files changed, 31 insertions(+), 31 deletions(-) create mode 100755 scripts/upgrade-peertube.sh delete mode 100755 scripts/upgrade.sh (limited to 'scripts') diff --git a/scripts/upgrade-peertube.sh b/scripts/upgrade-peertube.sh new file mode 100755 index 000000000..ff6dce94f --- /dev/null +++ b/scripts/upgrade-peertube.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +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 ! which yarn > /dev/null; then + echo 'You need yarn' + 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 + +yarn install --pure-lockfile +npm run build + +echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts." diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh deleted file mode 100755 index ff6dce94f..000000000 --- a/scripts/upgrade.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -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 ! which yarn > /dev/null; then - echo 'You need yarn' - 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 - -yarn install --pure-lockfile -npm run build - -echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts." -- cgit v1.2.3