Skip to content

Commit 26c9777

Browse files
committed
fix(client+deisctl): remove colors from installer messages
The ANSI color codes used in the "all done" installer messages won't print correctly on some platforms without using "echo -e", but the "-e" flag isn't recognized on all platforms.
1 parent 7dfa369 commit 26c9777

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

client/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ installer: build
2121
PATH=./makeself:$$PATH BINARY=deis makeself.sh --bzip2 --current --nox11 dist \
2222
dist/deis-cli-`grep '__version__\ =\ ' deis.py | cut -d' ' -f3 | tr -d \'`-`go env GOOS`-`go env GOARCH`.run \
2323
"Deis CLI" "echo \
24-
&& echo '\033[0;36mdeis\033[0m is in the current directory. Please' \
25-
&& echo 'move \033[0;36mdeis\033[0m to a directory in your search PATH.' \
24+
&& echo 'deis is in the current directory. Please' \
25+
&& echo 'move deis to a directory in your search PATH.' \
2626
&& echo \
2727
&& echo 'See http://docs.deis.io/ for documentation.' \
2828
&& echo"

deisctl/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ installer:
2121
dist/deisctl-`cat deis-version`-`go env GOOS`-`go env GOARCH`.run "Deis Control Utility" \
2222
"./deisctl refresh-units \
2323
&& echo \
24-
&& echo '\033[0;36mdeisctl\033[0m is in the current directory and unit files are' \
25-
&& echo 'in \$$HOME/.deis/units. Please move \033[0;36mdeisctl\033[0m to a' \
24+
&& echo 'deisctl is in the current directory and unit files are' \
25+
&& echo 'in \$$HOME/.deis/units. Please move deisctl to a' \
2626
&& echo 'directory in your search PATH.' \
2727
&& echo \
2828
&& echo 'See http://docs.deis.io/ for documentation.' \

0 commit comments

Comments
 (0)