quote $(CURDIR) to support $GOPATH with spaces

This commit is contained in:
Joseph Anthony Pasquale Holsten 2014-11-25 15:29:15 -08:00
parent 29a91c7db7
commit fc272d5f5a
1 changed files with 2 additions and 2 deletions

View File

@ -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