Skip to content

Commit 75ec904

Browse files
committed
fbc-tests: unit-tests.mk, fix command quoting for grep
1 parent 68b626f commit 75ec904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit-tests.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ $(UNIT_TESTS_INC) : $(DIRLIST_INC)
156156
@$(ECHO) "#" >> $(UNIT_TESTS_INC)
157157
@$(FIND) $(DIRLIST) -type f -name '*.bas' -or -name '*.bmk' \
158158
| $(XARGS) $(GREP) -l -i -E \
159-
'(#[[:space:]]*include[[:space:]](once)*[[:space:]]*\"fbcu(nit)?\.bi\")|([[:space:]]*.[[:space:]]*TEST_MODE[[:space:]]*\:[[:space:]]*FBCUNIT_COMPATIBLE)' \
159+
"(#[[:space:]]*include[[:space:]](once)*[[:space:]]*\"fbcu(nit)?\.bi\")|([[:space:]]*.[[:space:]]*TEST_MODE[[:space:]]*\:[[:space:]]*FBCUNIT_COMPATIBLE)" \
160160
| $(SED) -e 's/\(^.*\)/\SRCLIST \+\= \.\/\1/g' \
161161
>> $(UNIT_TESTS_INC)
162162
@$(ECHO) "Done"

0 commit comments

Comments
 (0)