From e1cb7a5ed4ef66716ddab819bb1faf64863a3fd2 Mon Sep 17 00:00:00 2001 From: Matthew Hooker Date: Tue, 24 Sep 2013 01:40:42 -0700 Subject: [PATCH] use interactive shell to run build script. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a74b30740..77e9b5a23 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) all: deps @mkdir -p bin/ @echo "$(OK_COLOR)==> Building$(NO_COLOR)" - @./scripts/build.sh + @bash --norc -i ./scripts/build.sh deps: @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"