Skip to content

Commit

Permalink
Don't ignore errors from commands in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
arnested committed Dec 7, 2024
1 parent c0bab67 commit 7c69843
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ vendor/bin/phpstan: vendor
vendor/bin/phpunit: vendor

phpcbf: vendor/bin/phpcbf
-vendor/bin/phpcbf -s -p --colors
vendor/bin/phpcbf -s -p --colors

phpcs: vendor/bin/phpcs
-vendor/bin/phpcs -s -p --colors
vendor/bin/phpcs -s -p --colors

phpstan: vendor/bin/phpstan
-vendor/bin/phpstan analyse
vendor/bin/phpstan analyse

phpunit: vendor/bin/phpunit
-vendor/bin/phpunit --testdox --coverage-html=coverage --colors
vendor/bin/phpunit --testdox --coverage-html=coverage --colors

clean:
$(RM) -r .phpunit.cache coverage docs vendor

0 comments on commit 7c69843

Please sign in to comment.