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

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-05-14 01:33:54 +0300
committerGitHub <noreply@github.com>2020-05-14 01:33:54 +0300
commit0a20edd1e400124187b0115d34b65674644a1068 (patch)
tree17c59537887cabdd077a40056eac56c4dca7779d
parentdef213a3db3f2ab3560c47edb6d53068fedeac44 (diff)
parent6cd18bfc06bc8d6ba4780f2d68912696eb3744aa (diff)
Merge pull request #644 from nextcloud/fix/noid/composer-lint-command-exit-codev19.0.0RC2
Use proper exit code for composer lint
-rw-r--r--composer.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 65209c0..14d7eb3 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"
}
}