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

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/20952/head
Morris Jobke 4 years ago
parent c6da7ec24c
commit 8614abaa5b
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68

@ -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"
}
}

Loading…
Cancel
Save