We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 962a51f commit d275a21Copy full SHA for d275a21
autotest-checkers.sh
@@ -1,11 +1,17 @@
1
#!/usr/bin/env bash
2
#
3
+RESULT=0
4
5
bash ./build/autoloaderchecker.sh
6
+RESULT=$(($RESULT+$?))
7
bash ./build/mergejschecker.sh
8
9
php ./build/signed-off-checker.php
10
11
php ./build/translation-checker.php
12
13
php ./build/htaccess-checker.php
14
15
16
17
for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -printf '%f\n'); do
@@ -29,5 +35,7 @@ for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -printf '%f\n'); do
29
35
else
30
36
./occ app:check-code "$app"
31
37
fi
32
- RESULT=$?
38
+ RESULT=$(($RESULT+$?))
33
39
done;
40
+
41
+exit $RESULT
0 commit comments