Skip to content

Commit

Permalink
Go: Fixing the version of staticcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Janhavi Gupta <[email protected]>
  • Loading branch information
janhavigupta007 committed Oct 29, 2024
1 parent 936b70a commit f4240be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install-dev-tools-go1.22:
go install github.com/vakenbolt/[email protected]
go install mvdan.cc/[email protected]
go install github.com/segmentio/[email protected]
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6
go install honnef.co/go/tools/cmd/staticcheck@latest

install-dev-tools-go1.22.0: install-dev-tools-go1.22

Expand Down
2 changes: 1 addition & 1 deletion go/integTest/glide_test_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func runClusterManager(suite *GlideTestSuite, args []string, ignoreExitCode bool
suite.T().Fatalf("Unexpected error while executing cluster_manager.py: %s", err.Error())
}

if exitError.Stderr != nil && len(exitError.Stderr) > 0 {
if len(exitError.Stderr) > 0 {
suite.T().Logf("cluster_manager.py stderr:\n====\n%s\n====\n", string(exitError.Stderr))
}

Expand Down

0 comments on commit f4240be

Please sign in to comment.