We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d55e3 commit 9288461Copy full SHA for 9288461
Makefile
@@ -21,19 +21,19 @@ install: install-tpi
21
tpi:
22
CGO_ENABLED=0 \
23
go build -ldflags="$(GO_LINK_FLAGS)" \
24
- -o $(shell pwd)/terraform-provider-iterative \
25
- $(TPI_PATH)
+ -o "$(shell pwd)/terraform-provider-iterative" \
+ "$(TPI_PATH)"
26
27
.PHONY: leo
28
leo:
29
30
31
- -o $(shell pwd)/leo \
32
- $(LEO_PATH)
+ -o "$(shell pwd)/leo" \
+ "$(LEO_PATH)"
33
34
.PHONY: install-tpi
35
install-tpi:
36
- GOBIN=${TF_PLUGIN_INSTALL_PATH} go install -ldflags="$(GO_LINK_FLAGS)" $(TPI_PATH)
+ GOBIN=${TF_PLUGIN_INSTALL_PATH} go install -ldflags="$(GO_LINK_FLAGS)" "$(TPI_PATH)"
37
38
.PHONY: test
39
test:
0 commit comments