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 9685d02 commit c255b6fCopy full SHA for c255b6f
.github/jobs/syntax-check
@@ -25,13 +25,14 @@ if [ ! -x /usr/bin/shellcheck ]; then
25
fi
26
27
find . \( \
28
- -path ./webapp/vendor -prune \
29
- -o -path ./webapp/var -prune \
30
- -o -path ./output -prune \
31
- -o -path ./.git -prune \
32
- -o -path ./webapp/migrations -prune \
33
- -o -path ./example_problems -prune \
34
- -o -type f \) \
+ -path ./webapp/vendor -prune \
+ -o -path ./webapp/var -prune \
+ -o -path ./output -prune \
+ -o -path ./.git -prune \
+ -o -path ./webapp/migrations -prune \
+ -o -path ./example_problems -prune \
+ -o -path ./webapp/config/reference.php -prune \
35
+ -o -type f \) \
36
-a -type f | \
37
while read -r i ; do
38
if [[ "$i" == *\.php ]] || grep -q "^#\\!.*php" "$i" && \
0 commit comments