Skip to content

Commit

Permalink
Ignore suggestions when installing Composer deps (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk authored and REBELinBLUE committed Jul 23, 2016
1 parent fba5424 commit ae87ef0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/scripts/deploy/steps/InstallComposerDependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ if [ -f {{ release_path }}/composer.json ]; then

if [ -n "{{ include_dev }}" ]; then
${composer} install --no-interaction --optimize-autoloader \
--prefer-dist --no-ansi --working-dir "{{ release_path }}"
--prefer-dist --no-suggest --no-ansi --working-dir "{{ release_path }}"
else
${composer} install --no-interaction --optimize-autoloader \
--no-dev --prefer-dist --no-ansi --working-dir "{{ release_path }}"
--no-dev --prefer-dist --no-suggest --no-ansi --working-dir "{{ release_path }}"
fi
fi

Expand Down

0 comments on commit ae87ef0

Please sign in to comment.