Commit afd2e2d0 authored by Ross Smith II's avatar Ross Smith II

removed extraneous -e from make output [GH-991]

parent 850b0664
...@@ -3,19 +3,20 @@ OK_COLOR=\033[32;01m ...@@ -3,19 +3,20 @@ OK_COLOR=\033[32;01m
ERROR_COLOR=\033[31;01m ERROR_COLOR=\033[31;01m
WARN_COLOR=\033[33;01m WARN_COLOR=\033[33;01m
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
ECHO=/bin/echo -e
all: deps all: deps
@mkdir -p bin/ @mkdir -p bin/
@echo -e "$(OK_COLOR)==> Building$(NO_COLOR)" @$(ECHO) "$(OK_COLOR)==> Building$(NO_COLOR)"
@bash --norc -i ./scripts/devcompile.sh @bash --norc -i ./scripts/devcompile.sh
deps: deps:
@echo -e "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" @$(ECHO) "$(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 -e "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)" @$(ECHO) "$(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 +27,7 @@ format: ...@@ -26,7 +27,7 @@ format:
go fmt ./... go fmt ./...
test: deps test: deps
@echo -e "$(OK_COLOR)==> Testing Packer...$(NO_COLOR)" @$(ECHO) "$(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