fix colorized output in terminal

Closes https://github.com/knadh/listmonk/issues/422
This commit is contained in:
Karan Sharma 2021-07-22 16:35:47 +05:30
parent 9e61bfc5df
commit 4d8e73b654

View file

@ -12,7 +12,7 @@ GREEN="$(tput setaf 2 2>/dev/null || printf '')"
NO_COLOR="$(tput sgr0 2>/dev/null || printf '')" NO_COLOR="$(tput sgr0 2>/dev/null || printf '')"
info() { info() {
printf '%s\n' "${BLUE}>${NO_COLOR} $*" printf '%s\n' "${BLUE}> ${NO_COLOR} $*"
} }
error() { error() {
@ -20,7 +20,7 @@ error() {
} }
completed() { completed() {
printf '%s\n' "${GREEN}${GREEN} $*" printf '%s\n' "${GREEN} ${NO_COLOR} $*"
} }
exists() { exists() {