projects
/
oweals
/
peertube.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf57f07
)
Add yarn to npm run upgrade
author
Bigard Florian
<florian.bigard@gmail.com>
Thu, 27 Apr 2017 09:38:42 +0000
(11:38 +0200)
committer
GitHub
<noreply@github.com>
Thu, 27 Apr 2017 09:38:42 +0000
(11:38 +0200)
scripts/upgrade.sh
patch
|
blob
|
history
diff --git
a/scripts/upgrade.sh
b/scripts/upgrade.sh
index 59deae1ebf8658bcabd207967d5286bd6d92e5cd..f974d68e03795c5d59eab0e8f893d98b85585f80 100755
(executable)
--- 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."