From fc272d5f5a500a83452b56c12ae7f6948b80acf6 Mon Sep 17 00:00:00 2001 From: Joseph Anthony Pasquale Holsten Date: Tue, 25 Nov 2014 15:29:15 -0800 Subject: [PATCH] quote $(CURDIR) to support $GOPATH with spaces --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7520a245a..8dbb67c01 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ TEST?=./... default: test bin: config/y.go - @sh -c "$(CURDIR)/scripts/build.sh" + @sh -c "'$(CURDIR)/scripts/build.sh'" dev: config/y.go - @TF_DEV=1 sh -c "$(CURDIR)/scripts/build.sh" + @TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'" test: config/y.go TF_ACC= go test $(TEST) $(TESTARGS) -timeout=10s -parallel=4