Skip to content

Commit e0e32eb

Browse files
committed
Makefile.toml: fix check-shell regex
Fixes a warning from newer versions of grep: grep: warning: stray \ before ! Signed-off-by: Ben Cressey <[email protected]>
1 parent 6ae8d81 commit e0e32eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twoliter/embedded/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ if ! docker run --rm \
517517
bash -c \
518518
'flagged_scripts=0 && \
519519
cd /tmp/tools && \
520-
for shell_script in $(grep -l --directories=skip --regexp="^#\!.*bash$" * ); do
520+
for shell_script in $(grep -l --directories=skip --regexp='^#!.*bash$' * ); do
521521
if ! shellcheck \
522522
--external-sources \
523523
--source-path=SCRIPTDIR \

0 commit comments

Comments
 (0)