diff options
author | Bigard Florian <florian.bigard@gmail.com> | 2017-04-27 16:00:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-27 16:00:10 +0200 |
commit | 339f0c80622090bd2c5ca4e40891194691fece4c (patch) | |
tree | 3435152cb7f6538fbd2706eae2445179bd9881bd | |
parent | aa77e1c2ac422a6da7ea73baa844998a13971458 (diff) | |
download | PeerTube-339f0c80622090bd2c5ca4e40891194691fece4c.tar.gz PeerTube-339f0c80622090bd2c5ca4e40891194691fece4c.tar.zst PeerTube-339f0c80622090bd2c5ca4e40891194691fece4c.zip |
Fix upgrade script (again...)
-rwxr-xr-x | scripts/upgrade.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/upgrade.sh b/scripts/upgrade.sh index af2ab4be4..748b0d947 100755 --- a/scripts/upgrade.sh +++ b/scripts/upgrade.sh | |||
@@ -26,8 +26,8 @@ fi | |||
26 | git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1 | 26 | git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1 |
27 | 27 | ||
28 | yarn install | 28 | yarn install |
29 | yarn update | 29 | yarn upgrade |
30 | cd client && yarn update && cd ../ | 30 | cd client && yarn upgrade && cd ../ |
31 | npm run build | 31 | npm run build |
32 | 32 | ||
33 | echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts." | 33 | echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts." |