Skip to content

Commit

Permalink
Fix 'go get' to 'go install'. (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katka92 authored Jul 13, 2022
1 parent c8b49f7 commit b02d61d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ TMP_DIR=$$(mktemp -d) ;\
cd $$TMP_DIR ;\
go mod init tmp ;\
echo "Downloading $(2)" ;\
GOBIN=$(PROJECT_DIR)/bin go get $(2) ;\
GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\
rm -rf $$TMP_DIR ;\
}
endef
Expand Down

0 comments on commit b02d61d

Please sign in to comment.