another attempt at fixing echo -e

This commit is contained in:
Ross Smith II 2014-04-21 10:50:28 -07:00
parent afd2e2d033
commit 55016b881a
1 changed files with 5 additions and 0 deletions

View File

@ -3,7 +3,12 @@ OK_COLOR=\033[32;01m
ERROR_COLOR=\033[31;01m
WARN_COLOR=\033[33;01m
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)
UNAME := $(shell uname -s)
ifeq ($(UNAME),Darwin)
ECHO=echo
else
ECHO=/bin/echo -e
endif
all: deps
@mkdir -p bin/