From 30bb86badefc89a2caf9f6480d35ddbf8d9c1787 Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com> Date: Mon, 15 Sep 2025 01:36:04 +0200 Subject: [PATCH] ci(fix): try to color only [err] log as red --- tools/SmokeTesting/run_tests.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/SmokeTesting/run_tests.zsh b/tools/SmokeTesting/run_tests.zsh index 599c44afdb..2b90016d33 100755 --- a/tools/SmokeTesting/run_tests.zsh +++ b/tools/SmokeTesting/run_tests.zsh @@ -34,7 +34,7 @@ done if [[ ${#error_clients} -gt 0 ]]; then for client in "${error_clients[@]}"; do while IFS= read -r line; do - if [[ "$line" =~ (\[ERR\]) ]]; then + if [[ "$line" == *"[ERR]"* ]]; then print -P "%F{red}${line}%f" else echo "$line"