From: Bigard Florian Date: Thu, 27 Apr 2017 09:38:42 +0000 (+0200) Subject: Add yarn to npm run upgrade X-Git-Tag: v0.0.1-alpha~446 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=94f12771f5c0400950b023ef96a1f5c98b271fc3;p=oweals%2Fpeertube.git Add yarn to npm run upgrade --- diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index 59deae1eb..f974d68e0 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh @@ -13,6 +13,11 @@ if [[ $(npm --version) < $npmMinVersion ]]; then 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 @@ -20,9 +25,9 @@ fi git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1 -npm install -npm update -cd client && npm update && cd ../ +yarn install +yarn update +cd client && yarn update && cd ../ npm run build echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."