Switch path during upgrades

This commit is contained in:
Bob Mottram 2018-02-09 15:43:19 +00:00
parent 1ed1a4a56d
commit 21614bece9
1 changed files with 4 additions and 2 deletions

View File

@ -200,8 +200,10 @@ function upgrade_peertube {
function_check set_repo_commit
set_repo_commit $PEERTUBE_DIR "peertube commit" "$PEERTUBE_COMMIT" $PEERTUBE_REPO
alias npm-exec='PATH=$(npm bin):$PATH'
npm-exec npm run upgrade-peertube
PREV_PATH=$PATH
PATH=$(npm bin):$PATH
npm run upgrade-peertube
PATH=$PREV_PATH
chown -R peertube:peertube $PEERTUBE_DIR
systemctl start peertube