We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5252932 commit 21f89b6Copy full SHA for 21f89b6
terraform/Makefile
@@ -22,10 +22,8 @@ all: go-build
22
23
.PHONY: go-mod-tidy-vendor
24
go-mod-tidy-vendor: $(GO_MOD_TIDY_TARGETS)
25
-# The -compat=1.18 is needed for the openstack provider. The provider uses golang.org/x/mod, which go 1.18 selects
26
-# as v0.3.0 but go 1.16 selects as v0.4.2.
27
$(GO_MOD_TIDY_TARGETS): go-mod-tidy-vendor.%:
28
- cd providers/$* && go mod tidy -compat=1.18 && go mod vendor
+ cd providers/$* && go mod tidy && go mod vendor
29
30
.PHONY: go-build
31
go-build: $(GO_BUILD_TARGETS) go-build-terraform
0 commit comments