From cb14c0855b49287a2fe719a20a77172fc90bd527 Mon Sep 17 00:00:00 2001 From: Fergal Mc Carthy Date: Tue, 30 Apr 2024 11:56:03 -0400 Subject: [PATCH] Quieten ST1005 warning in internal/zypper/error.go When editing with VS Code I see a warning that error messages should not be capitalized, which is easily quietened. --- internal/zypper/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/zypper/error.go b/internal/zypper/error.go index 2bb753b9..3e8f24e2 100644 --- a/internal/zypper/error.go +++ b/internal/zypper/error.go @@ -19,4 +19,4 @@ func (ze ZypperError) Error() string { strings.Join(ze.Commmand, " "), ze.ExitCode, ze.Output, ze.Err) } -var ErrCannotDetectBaseProduct = errors.New("Unable to detect base product") +var ErrCannotDetectBaseProduct = errors.New("unable to detect base product")