From 5c7b516234769c9ccd797a22b2377664f3c64c72 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Tue, 1 May 2018 14:37:57 +0800 Subject: [PATCH] Fix color --- docs/cn/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cn/install.sh b/docs/cn/install.sh index d9cb90c09..40e179a0e 100755 --- a/docs/cn/install.sh +++ b/docs/cn/install.sh @@ -124,7 +124,7 @@ warn () { # echo_with_color {{{ echo_with_color () { - printf '%b\n' "$1$2" >&2 + printf '%b\n' "$1$2$Color_off" >&2 } # }}}