Skip to content

Commit

Permalink
don't update checker dependencies on each check
Browse files Browse the repository at this point in the history
  • Loading branch information
dakyskye committed Oct 18, 2020
1 parent f865c17 commit 30422e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions do.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ check_ensuredeps() {
CUR="$PWD"
cd ~
echo "downloading required dependencies for checking code"
go get -u honnef.co/go/tools/cmd/staticcheck
go get -u golang.org/x/lint/golint
go get -u github.com/gordonklaus/ineffassign
go get -u github.com/client9/misspell/cmd/misspell
go get honnef.co/go/tools/cmd/staticcheck
go get golang.org/x/lint/golint
go get github.com/gordonklaus/ineffassign
go get github.com/client9/misspell/cmd/misspell
cd "$CUR"
echo "dependencies are downloaded and installed"
}
Expand Down

0 comments on commit 30422e5

Please sign in to comment.