diff options
Diffstat (limited to 'lib/common.sh')
-rw-r--r-- | lib/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.sh b/lib/common.sh index 821f8df..eaa16a4 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -17,7 +17,7 @@ export LANG=C shopt -s extglob # check if messages are to be printed using color -if [[ -t 2 ]]; then +if [[ -t 2 && "$TERM" != dumb ]]; then colorize else # shellcheck disable=2034 |