File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -93,10 +93,11 @@ build:
9393 rm $(PHP_SCOPER_PHAR_BIN ) || true
9494 $(MAKE ) $(PHP_SCOPER_PHAR_BIN )
9595
96- .PHONY : outdated_fixtures
97- outdated_fixtures : # # Reports outdated dependencies
98- outdated_fixtures :
99- find fixtures -name ' composer.json' -type f -depth 2 -exec dirname ' {}' \; | xargs -I % sh -c ' echo "Checking %;" $$(composer install --working-dir=% --ansi && composer outdated --direct --working-dir=% --ansi)'
96+ .PHONY : fixtures_composer_outdated
97+ fixtures_composer_outdated : # # Reports outdated dependencies
98+ fixtures_composer_outdated :
99+ @find fixtures -name ' composer.json' -type f -depth 2 -exec dirname ' {}' \; | xargs -I % sh -c ' printf "Installing dependencies for %;\n" $$(composer install --working-dir=% --ansi)'
100+ @find fixtures -name ' composer.json' -type f -depth 2 -exec dirname ' {}' \; | xargs -I % sh -c ' printf "Checking dependencies for %;\n" $$(composer outdated --direct --working-dir=% --ansi)'
100101
101102.PHONY : test
102103test : # # Runs all the tests
You can’t perform that action at this time.
0 commit comments