From bcfa707df728aa6b37d9c76c2c14951bb643e28c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 2 Jun 2025 03:10:52 +0200 Subject: [PATCH] Fix COLOR_FLAG --- t | 4 ++-- test | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/t b/t index f1524ad4..36d2d391 100755 --- a/t +++ b/t @@ -1,9 +1,9 @@ #!/bin/bash if [[ "${CLAUDECODE}" != "1" ]]; then - COLOR_FLAG="--color=always" + COLOR_FLAG="--colors=always" else - COLOR_FLAG="" + COLOR_FLAG="--colors=never" fi docker compose exec -e COLUMNS=$(tput cols) -T test vendor/bin/pest ${COLOR_FLAG} --no-coverage --filter "$@" diff --git a/test b/test index 49027fdf..0df8f63e 100755 --- a/test +++ b/test @@ -3,7 +3,7 @@ if [[ "${CLAUDECODE}" != "1" ]]; then COLOR_FLAG="--colors=always" else - COLOR_FLAG="" + COLOR_FLAG="--colors=never" fi # --columns doesn't seem to work at the moment, so we're setting it using an environment variable