diff --git a/scripts/install.sh b/scripts/install.sh index affa715ff..cb2a02952 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -38,4 +38,6 @@ TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) git checkout $TAG SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist +yarn install +yarn build:$ENV php bin/console wallabag:install --env=$ENV diff --git a/scripts/update.sh b/scripts/update.sh index 1f31d429c..993e65d4a 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -50,4 +50,6 @@ TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) git checkout $TAG --force SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV +yarn install +yarn build:$ENV php bin/console cache:clear --env=$ENV