fix(agent): yellow os-type skips

This commit is contained in:
2025-05-31 22:36:51 +01:00
parent 432207808a
commit 30035f32e6
13 changed files with 14 additions and 12 deletions

View File

@@ -8,11 +8,13 @@ set -eo pipefail
if [[ -t 1 && -n "$TERM" && "$TERM" != "dumb" ]]; then
RED="\033[1;31m"
GREEN="\033[1;32m"
YELLOW="\033[1;33m"
GREY="\033[1;30m"
NC="\033[0m"
else
RED=""
GREEN=""
YELLOW=""
GREY=""
NC=""
fi