From 692dc93ecc09fcacaeef6777ecd62a52fc7f02b9 Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Wed, 4 Aug 2021 17:26:36 +0200 Subject: [PATCH] FIX: Fixed shell command in test/Makefile --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 589bc4a..2993b09 100644 --- a/test/Makefile +++ b/test/Makefile @@ -51,7 +51,7 @@ test_cpp: && conan install ../.. -s "compiler.libcxx=libstdc++11" \ && cmake -D TEST=On ../.. \ && make test_detailed \ - || echo "Test(s) failed."; exit 1 + || (echo "Test(s) failed."; exit 1) # Exit with error if tests fail. # && make test || make test_detailed || echo "Test(s) failed." ; exit 1 -- GitLab