Skip to content

Commit c255b6f

Browse files
Do not check syntax for reference file
1 parent 9685d02 commit c255b6f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/jobs/syntax-check

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ if [ ! -x /usr/bin/shellcheck ]; then
2525
fi
2626

2727
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 \) \
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 -path ./webapp/config/reference.php -prune \
35+
-o -type f \) \
3536
-a -type f | \
3637
while read -r i ; do
3738
if [[ "$i" == *\.php ]] || grep -q "^#\\!.*php" "$i" && \

0 commit comments

Comments
 (0)