Skip to content

Commit ba6f766

Browse files
authored
[check] Use single quotes for grep argument (#6517)
This fixes a warning when running the checks: grep: warning: stray \ before e
1 parent a54e71e commit ba6f766

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/check-source.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ done |
5454
fail 'two consecutive \\pnum' || failed=1
5555

5656
# punctuation after the footnote marker
57-
grep -n "\\end{footnote" $texfiles | grep -v '}[@)%]\?$' |
57+
grep -n '\\end{footnote' $texfiles | grep -v '}[@)%]\?$' |
5858
fail "punctuation after footnote marker" || failed=1
5959

6060
# \opt used incorrectly.

0 commit comments

Comments
 (0)