mirror of https://github.com/Chocobozzz/PeerTube
Add yarn to npm run upgrade
parent
bf57f073ee
commit
94f12771f5
|
@ -13,6 +13,11 @@ if [[ $(npm --version) < $npmMinVersion ]]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if ! which yarn > /dev/null; then
|
||||||
|
echo 'You need yarn'
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
if pgrep peertube > /dev/null; then
|
if pgrep peertube > /dev/null; then
|
||||||
echo 'PeerTube is running!'
|
echo 'PeerTube is running!'
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -20,9 +25,9 @@ fi
|
||||||
|
|
||||||
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
|
git pull origin $(git rev-parse --abbrev-ref HEAD) || exit -1
|
||||||
|
|
||||||
npm install
|
yarn install
|
||||||
npm update
|
yarn update
|
||||||
cd client && npm update && cd ../
|
cd client && yarn update && cd ../
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
|
echo "\n\nUpgrade finished! You can restart PeerTube that may run the migration scripts."
|
||||||
|
|
Loading…
Reference in New Issue