Browse Source

Respect exit code of lint run - changed from -exec to xargs as this exits properly

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Morris Jobke 4 years ago
parent
commit
8614abaa5b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      composer.json

+ 1 - 1
composer.json

@@ -22,6 +22,6 @@
     "scripts": {
         "cs:fix": "php-cs-fixer fix",
         "cs:check": "php-cs-fixer fix --dry-run --diff",
-        "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/.phan/*' -exec php -l \"{}\" \\;"
+        "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/.phan/*' -print0 | xargs -0 -n1 php -l"
     }
 }