Skip to content

Commit 395cf91

Browse files
committed
refactor(golang): Replacing go get by go install equivalent
Signed-off-by: Vincent Boutour <[email protected]>
1 parent 8f695d3 commit 395cf91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ dev: format style test build
4343
.PHONY: init
4444
init:
4545
@curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap" | bash -s "git_hooks" "coverage" "release"
46-
go get github.com/kisielk/errcheck
47-
go get golang.org/x/lint/golint
48-
go get golang.org/x/tools/cmd/goimports
46+
go install github.com/kisielk/errcheck@latest
47+
go install golang.org/x/lint/golint@latest
48+
go install golang.org/x/tools/cmd/goimports@latest
4949
go mod tidy
5050

5151
## format: Format code. e.g Prettier (js), format (golang)

0 commit comments

Comments
 (0)