@@ -21,12 +21,12 @@ ifeq (, $(shell command -v composer 2> /dev/null))
2121endif
2222# We use --no-scripts here because at this point the autoload.php file is
2323# not generated yet, which is needed to run the post-install scripts.
24- composer $(subst 1,-q,$(QUIET)) install --prefer-dist -o -a --no-scripts --no-plugins
24+ composer install $(QUIET_FLAG) --prefer-dist -o -a --no-scripts --no-plugins
2525
2626dependencies-dev : composer-dependencies-dev node-dependencies
2727
2828composer-dependencies-dev :
29- composer $(subst 1,-q, $( QUIET ) ) install --prefer-dist --no-scripts --no-plugins
29+ composer $(QUIET_FLAG ) install --prefer-dist --no-scripts --no-plugins
3030
3131# Dump autoload dependencies (including plugins)
3232# This is needed since symfony/runtime is a Composer plugin that runs while dumping
@@ -36,10 +36,10 @@ composer-dependencies-dev:
3636composer-dump-autoload : vendor/autoload_runtime.php
3737
3838vendor/autoload_runtime.php :
39- composer $(subst 1,-q, $( QUIET ) ) dump-autoload -o -a
39+ composer $(QUIET_FLAG ) dump-autoload -o -a
4040
4141composer-dump-autoload-dev :
42- composer $(subst 1,-q, $( QUIET ) ) dump-autoload
42+ composer $(QUIET_FLAG ) dump-autoload
4343
4444define detect_yarn
4545YARN_CMD=$$(command -v yarn || command -v yarnpkg ) ; \
0 commit comments