Skip to content

Commit

Permalink
Uncomment install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo committed Feb 21, 2024
1 parent 59c53e6 commit 6cd71e4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions go/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
install-tools:
#go install github.com/vakenbolt/[email protected]
#go install google.golang.org/protobuf/cmd/[email protected]
#go install mvdan.cc/[email protected]
#go install golang.org/x/tools/cmd/[email protected]
#echo $$(go version | sed 's/.* go\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\2/')
go install github.com/vakenbolt/[email protected]
go install google.golang.org/protobuf/cmd/[email protected]
go install mvdan.cc/[email protected]
go install golang.org/x/tools/cmd/[email protected]
go_minor=$$(go version | sed 's/.* go\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\2/'); \
if [ "$$go_minor" -eq 18 ]; then staticcheck_version=v0.3.3; else staticcheck_version=latest; fi; \
if [ "$$go_minor" -eq 18 ]; then staticcheck_version=v0.3.3; else staticcheck_version=v0.4.6; fi; \
go install honnef.co/go/tools/cmd/staticcheck@$$staticcheck_version

build: build-glide-core build-glide-client generate-protobuf
Expand Down

0 comments on commit 6cd71e4

Please sign in to comment.