From 01bc0e726c816c6aac93aadd253a263dbeb5fe67 Mon Sep 17 00:00:00 2001 From: Siyuan Miao Date: Thu, 25 Sep 2025 21:22:06 +0000 Subject: [PATCH] set TERM to dumb if not set --- dev_deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev_deploy.sh b/dev_deploy.sh index 99791a18..a42c983b 100755 --- a/dev_deploy.sh +++ b/dev_deploy.sh @@ -3,6 +3,8 @@ # Exit immediately if a command exits with a non-zero status set -e +TERM="${TERM:-dumb}" + C_RST="$(tput sgr0)" C_ERR="$(tput setaf 1)" C_OK="$(tput setaf 2)"