Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-05-13 23:49:38 +0300
committerMorris Jobke <hey@morrisjobke.de>2020-05-13 23:49:38 +0300
commitb6a056b03d3b0278e40b9cc1e1a2c52f0d777fb0 (patch)
tree9d3b8ba0b68b56c414a08946a21aabe220f8d643 /composer.json
parent394ff2c62987a248162f31c7a972f695861b6a36 (diff)
Use proper exit code for composer lint
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 82e1d663a..3e37c9bcb 100644
--- a/composer.json
+++ b/composer.json
@@ -15,6 +15,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"
}
}