Skip to content

Commit

Permalink
Remove --no-suggest from composer command (#1463)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Aug 17, 2022
1 parent f4ad181 commit 6e52fcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/post-merge
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ if [ -f ".NO_AUTO_COMPOSER_MIGRATE" ]; then
else
if [ -x "$PHPUNIT" ]; then
printf "\n${ORANGE}Dev mode detected${NO_COLOR}\n"
echo "composer install --no-suggest"
composer install --no-suggest
echo "composer install"
composer install
if command -v npm > /dev/null; then
echo "npm install --no-audit --no-fund"
npm install --no-audit --no-fund
fi
else
printf "\n${ORANGE}--no-dev mode detected${NO_COLOR}\n"
echo "composer install --no-dev --prefer-dist --no-suggest"
composer install --no-dev --prefer-dist --no-suggest
echo "composer install --no-dev --prefer-dist"
composer install --no-dev --prefer-dist
fi
if [ -f ".env" ]; then
echo "php artisan migrate --force"
Expand Down

0 comments on commit 6e52fcc

Please sign in to comment.