Update command for installing plugin dependencies according to the Composer V2 version (#3615)

This commit is contained in:
Vaalyn 2021-01-01 00:29:53 +01:00 committed by GitHub
parent bb97376a2e
commit 1dfc075609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ echo "(Environment: $APPLICATION_ENV)"
if [ "$APPLICATION_ENV" = "production" ]; then
if bool "$COMPOSER_PLUGIN_MODE"; then
composer update --lock --no-dev --optimize-autoloader
composer update --no-dev --optimize-autoloader
fi
else
if [ "$APPLICATION_ENV" = "testing" ]; then

View File

@ -20,7 +20,7 @@ echo "(Environment: $APPLICATION_ENV)"
if [ "$APPLICATION_ENV" = "production" ]; then
if bool "$COMPOSER_PLUGIN_MODE"; then
composer update --lock --no-dev --optimize-autoloader
composer update --no-dev --optimize-autoloader
fi
else
composer install