From 614920363e9d229fa7c00c7989bb6dfe1cb4ada7 Mon Sep 17 00:00:00 2001 From: akscram Date: Thu, 22 Jul 2021 22:08:04 +0000 Subject: [PATCH] Automation: remove backslashes in makefiles grep git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14610 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- tools/workflows/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/workflows/Makefile b/tools/workflows/Makefile index e5282441b..891bd083c 100644 --- a/tools/workflows/Makefile +++ b/tools/workflows/Makefile @@ -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)