From cc1d8eb15319c1aed3054b09c5835007037c4b72 Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Tue, 3 Mar 2015 14:16:01 -0800 Subject: [PATCH] No sense in echo -e if it isn't gonna -e --- script-modules/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-modules/util.sh b/script-modules/util.sh index fec3c620..a8abbf35 100644 --- a/script-modules/util.sh +++ b/script-modules/util.sh @@ -9,7 +9,7 @@ echo_cmd() { color() { [ -n "$NO_COLOR" ] && return - echo -ne "[0;${1:-0}m" + echo -n "[0;${1:-0}m" }