Skip to content

Commit 2e894a0

Browse files
committed
Use go install instead of go get
Fixes fetching of some tools with newer go versions.
1 parent 600960f commit 2e894a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ TMP_DIR=$$(mktemp -d) ;\
108108
cd $$TMP_DIR ;\
109109
go mod init tmp ;\
110110
echo "Downloading $(2)" ;\
111-
GOBIN=$(PROJECT_DIR)/bin go get $(2) ;\
111+
GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\
112112
rm -rf $$TMP_DIR ;\
113113
}
114114
endef

0 commit comments

Comments
 (0)