From 7c6984364f59acfa2b138463dc2b482b910a7ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Sat, 7 Dec 2024 19:57:04 +0100 Subject: [PATCH] Don't ignore errors from commands in Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index bc60326..db38705 100644 --- a/Makefile +++ b/Makefile @@ -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