Browse Source

remove colored output at least for TERMs starting with "vt"

pull/893/head
Frank W. Bergmann 8 years ago
parent
commit
349496ddca
  1. 4
      acme.sh

4
acme.sh

@ -102,6 +102,10 @@ __INTERACTIVE=""
if [ -t 1 ]; then
__INTERACTIVE="1"
fi
if [[ "$TERM" =~ "^vt" ]]
then
unset __INTERACTIVE
fi
__green() {
if [ "$__INTERACTIVE" ]; then

Loading…
Cancel
Save