From bc9034386ca7bf1f4ab2fef0b839f869f6bfef50 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 13 May 2020 22:48:41 +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 3717e8126..0c103ee58 100644 --- a/composer.json +++ b/composer.json @@ -9,6 +9,6 @@ "require": { }, "scripts": { - "lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;" + "lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l" } }