Skip to content

Commit 8ec0030

Browse files
committed
Use correct var name for the golangci-lint config file
This was missed in b48895c. Signed-off-by: Manuel Mendez <[email protected]>
1 parent f2e7225 commit 8ec0030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lint-install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ func goLintCmd(root string, level string, fix bool) string {
254254
}
255255

256256
klog.Infof("found %d modules within %s: %s", len(found), root, found)
257-
return fmt.Sprintf(`find . -name go.mod -execdir "$(GOLANGCI_LINT_BIN)" run -c "$(GOLINT_CONFIG)"%s \;`, suffix)
257+
return fmt.Sprintf(`find . -name go.mod -execdir "$(GOLANGCI_LINT_BIN)" run -c "$(GOLANGCI_LINT_CONFIG)"%s \;`, suffix)
258258
}
259259

260260
// shellLintCmd returns the appropriate shell lint command for a project.

0 commit comments

Comments
 (0)