Skip to content

Commit

Permalink
chore(Makefile): fixed deps install
Browse files Browse the repository at this point in the history
  • Loading branch information
michakfromparis committed Dec 16, 2021
1 parent 91fbdc4 commit 333473a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ check:
# install build dependencies
deps: check
go get -d
go get golang.org/x/tools/cmd/goimports
go get github.com/kisielk/errcheck
go get github.com/maruel/panicparse
go get golang.org/x/lint/golint
go install golang.org/x/tools/cmd/goimports
go install github.com/kisielk/errcheck
go install github.com/maruel/panicparse
go install golang.org/x/lint/golint

# install development build dependencies
deps-dev: check deps
go get golang.org/x/tools/cmd/gorename
go get github.com/spf13/cobra/cobra
go install golang.org/x/tools/cmd/gorename
go install github.com/spf13/cobra/cobra

# format go code
format: check
Expand Down

0 comments on commit 333473a

Please sign in to comment.