We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e0640 commit 3c7a078Copy full SHA for 3c7a078
Makefile
@@ -3,7 +3,6 @@
3
4
SHELL:=bash
5
BINARY_NAME=terraform-provider-corefunc
6
-BINARY_VERSION=$(shell cat ./VERSION | tr -d '\n')
7
GOBIN=$(shell ./find-go-bin.sh)
8
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
9
current_dir := $(dir $(mkfile_path))
@@ -109,8 +108,7 @@ tidy:
109
108
@ $(ECHO) " "
110
@ $(ECHO) "\033[1;33m=====> Tidy and download the Go dependencies...\033[0m"
111
$(GO) mod tidy -go=1.21 -v
112
- $(GO) mod download -x
113
- $(GO) get -v ./...
+ $(GO) get -d -u -t -v ./...
114
115
.PHONY: build
116
## build: [build]* Builds and installs the Terraform provider.
0 commit comments