Skip to content

Commit

Permalink
fix go get -> go install
Browse files Browse the repository at this point in the history
  • Loading branch information
wataboru committed May 13, 2022
1 parent 86b6024 commit bfaa9c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
go-version: 1.x
- name: Add $GOPATH/bin to $PATH
run: echo "::add-path::$(go env GOPATH)/bin"
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cross build
run: make cross
- name: Create Release
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ lint: $(GONAME)/golint
golint -set_exit_status ./...

$(GONAME)/golint:
cd && go get golang.org/x/lint/golint
cd && go install golang.org/x/lint/golint

.PHONY: clean
clean:
Expand Down

0 comments on commit bfaa9c7

Please sign in to comment.