From 92fa741cf2824f47a1ad81dd6d2f08d7f0266272 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 19 Dec 2020 18:42:20 +0000 Subject: [PATCH] test: fix regex in run-integration-tests.sh The regex results in calls of "make setup run -again" which is broken --- test/run-integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-integration-tests.sh b/test/run-integration-tests.sh index 2d3f0ee94f..3c01adfca3 100755 --- a/test/run-integration-tests.sh +++ b/test/run-integration-tests.sh @@ -7,7 +7,7 @@ if [ $# -gt 0 ]; then else args="setup run clean-again" fi -args_no_clean=$(sed -r 's/\bclean\b//g' <<<$args) +args_no_clean=$(sed -r 's/\bclean.*\b//g' <<<$args) do_clean=$( [ "$args" = "$args_no_clean" ]; echo $? ) ninja -C "$BUILD_DIR"