From f08f2daa6f0dbd1df97ec2fb1bc3c8b93d3529f5 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Tue, 1 May 2018 14:34:31 +0800 Subject: [PATCH] Fix color --- docs/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.sh b/docs/install.sh index 5b3a5aaf3..72befa93f 100755 --- a/docs/install.sh +++ b/docs/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 } # }}}