From b5360ba1d52172793de424775cf892cfe9e04ad5 Mon Sep 17 00:00:00 2001 From: sirknightj Date: Thu, 21 Nov 2024 14:46:04 -0800 Subject: [PATCH] Remove square brackets --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42671cfae6..573b3cf966 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -719,7 +719,7 @@ jobs: run: | cd build CMAKE_LOGS=$(cmake .. -DKVS_STACK_SIZE=65536 2>&1) - if [ ! echo "$CMAKE_LOGS" | grep -q "Building with default stack size: 65536 bytes" ]; then + if ! echo "$CMAKE_LOGS" | grep -q "Building with default stack size: 65536 bytes"; then echo "Stack size was not sent to PIC properly." echo "$CMAKE_LOGS" exit 1