From afd2e2d03343fbf00a102f986b45097cdbcff121 Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Mon, 21 Apr 2014 09:30:51 -0700 Subject: [PATCH] removed extraneous -e from make output [GH-991] --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e370ccc31..6fbb21308 100644 --- a/Makefile +++ b/Makefile @@ -3,19 +3,20 @@ OK_COLOR=\033[32;01m ERROR_COLOR=\033[31;01m WARN_COLOR=\033[33;01m DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) +ECHO=/bin/echo -e all: deps @mkdir -p bin/ - @echo -e "$(OK_COLOR)==> Building$(NO_COLOR)" + @$(ECHO) "$(OK_COLOR)==> Building$(NO_COLOR)" @bash --norc -i ./scripts/devcompile.sh deps: - @echo -e "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" + @$(ECHO) "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" @go get -d -v ./... @echo $(DEPS) | xargs -n1 go get -d updatedeps: - @echo -e "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)" + @$(ECHO) "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)" @go get -d -v -u ./... @echo $(DEPS) | xargs -n1 go get -d -u @@ -26,7 +27,7 @@ format: go fmt ./... test: deps - @echo -e "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)" + @$(ECHO) "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)" go test ./... .PHONY: all clean deps format test updatedeps