quote $(CURDIR) to support $GOPATH with spaces
This commit is contained in:
parent
29a91c7db7
commit
fc272d5f5a
4
Makefile
4
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
|
||||
|
|
Loading…
Reference in New Issue