Skip to content

Commit 3766298

Browse files
committed
Quote tags to avoid history expansion
Tags may contain an exclamation mark, which the shell will treat as a request for history expansion.
1 parent 3c9dd66 commit 3766298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unit/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ test: $(CATCH_TEST)
320320
# Include hidden tests by specifying "*,[.]" for tests to count
321321
if ! ./$(CATCH_TEST) "*,[.]" -l | grep -q "^$(N_CATCH_TESTS) matching test cases" ; then \
322322
./$(CATCH_TEST) "*,[.]" -l ; fi
323-
./$(CATCH_TEST) ${TAGS}
323+
./$(CATCH_TEST) '${TAGS}'
324324

325325

326326
###############################################################################

0 commit comments

Comments
 (0)