Skip to content

Commit 6cb2d15

Browse files
committed
golangci-lint: add nolint directive
1 parent 590da11 commit 6cb2d15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helpers/command.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func StembuildWithEnv(passedEnv map[string]string, command string, args ...strin
5555

5656
func WriteCommand(command string, args []string) {
5757
display := append([]string{DebugCommandPrefix, command}, args...)
58-
GinkgoWriter.Write([]byte(strings.Join(append(display, "\n"), " ")))
58+
GinkgoWriter.Write([]byte(strings.Join(append(display, "\n"), " "))) //nolint:errcheck
5959
}
6060

6161
// AddOrReplaceEnvironment will update environment if it already exists or will add

0 commit comments

Comments
 (0)