Automation: remove backslashes in makefiles grep

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14610 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
akscram 2021-07-22 22:08:04 +00:00
parent bf3a0220b9
commit 614920363e
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ linters := $(shell find $(ROOT)/tools/style -type f -name "*.sh")
# Build makefile based projects
all : makefiles
makefiles : $(makefiles) $(multi_makefiles)
@! grep -q -r -m 1 \\"failure\\" $(TEST_RESULTS) 2>&1 > /dev/null || ( \
@! grep -q -r -m 1 "failure" $(TEST_RESULTS) 2>&1 > /dev/null || ( \
echo "Exiting because there are build failures"; \
exit 1)