From 12463e36d3922b3a445e3ebf8cd7a19dc512d440 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 13 May 2020 22:49:13 +0200 Subject: [PATCH] Use proper exit code for composer lint Signed-off-by: Morris Jobke --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ee0617ab..1ce06f95 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "scripts": { - "lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;" + "lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l" }, "require": {} }