@@ -20,12 +20,12 @@ ifeq (, $(shell command -v composer 2> /dev/null))
2020endif
2121# We use --no-scripts here because at this point the autoload.php file is
2222# not generated yet, which is needed to run the post-install scripts.
23- composer $(subst 1,-q,$(QUIET)) install --prefer-dist -o -a --no-scripts --no-plugins
23+ composer install $(QUIET_FLAG) --prefer-dist -o -a --no-scripts --no-plugins
2424
2525dependencies-dev : composer-dependencies-dev node-dependencies
2626
2727composer-dependencies-dev :
28- composer $(subst 1,-q, $( QUIET ) ) install --prefer-dist --no-scripts --no-plugins
28+ composer $(QUIET_FLAG ) install --prefer-dist --no-scripts --no-plugins
2929
3030# Dump autoload dependencies (including plugins)
3131# This is needed since symfony/runtime is a Composer plugin that runs while dumping
@@ -35,10 +35,10 @@ composer-dependencies-dev:
3535composer-dump-autoload : vendor/autoload_runtime.php
3636
3737vendor/autoload_runtime.php :
38- composer $(subst 1,-q, $( QUIET ) ) dump-autoload -o -a
38+ composer $(QUIET_FLAG ) dump-autoload -o -a
3939
4040composer-dump-autoload-dev :
41- composer $(subst 1,-q, $( QUIET ) ) dump-autoload
41+ composer $(QUIET_FLAG ) dump-autoload
4242
4343node-dependencies :
4444ifeq (, $(shell command -v yarn || command -v yarnpkg 2> /dev/null) )
0 commit comments