Commit e7e30aca authored by Christian Berendt's avatar Christian Berendt

fixing colored output of Makefile

The colored output is broken when using Zsh.

\033[32;01m==> Installing dependencies\033[0m
\033[32;01m==> Building\033[0m

After adding the parameter -e to echo I get the expected green lines.
parent dc21bf01
...@@ -6,16 +6,16 @@ DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) ...@@ -6,16 +6,16 @@ DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
all: deps all: deps
@mkdir -p bin/ @mkdir -p bin/
@echo "$(OK_COLOR)==> Building$(NO_COLOR)" @echo -e "$(OK_COLOR)==> Building$(NO_COLOR)"
@bash --norc -i ./scripts/devcompile.sh @bash --norc -i ./scripts/devcompile.sh
deps: deps:
@echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" @echo -e "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
@go get -d -v ./... @go get -d -v ./...
@echo $(DEPS) | xargs -n1 go get -d @echo $(DEPS) | xargs -n1 go get -d
updatedeps: updatedeps:
@echo "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)" @echo -e "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)"
@go get -d -v -u ./... @go get -d -v -u ./...
@echo $(DEPS) | xargs -n1 go get -d -u @echo $(DEPS) | xargs -n1 go get -d -u
...@@ -26,7 +26,7 @@ format: ...@@ -26,7 +26,7 @@ format:
go fmt ./... go fmt ./...
test: deps test: deps
@echo "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)" @echo -e "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)"
go test ./... go test ./...
.PHONY: all clean deps format test updatedeps .PHONY: all clean deps format test updatedeps
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment