From 7eed20e35fe64f2e7dc980e3db45434a6807e22e Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Sun, 11 Sep 2022 13:56:54 -0700 Subject: [PATCH] main: fix linting issue (staticcheck ST1005) (MR 22) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 74f6fbe..3d274b5 100644 --- a/main.go +++ b/main.go @@ -810,7 +810,7 @@ func getModule(modName string, modDir string) (files []string, err error) { for _, dep := range deps { p := filepath.Join(modDir, dep) if !exists(p) { - return nil, fmt.Errorf("Tried to include a module that doesn't exist in the modules directory (%s): %s", modDir, p) + return nil, fmt.Errorf("tried to include a module that doesn't exist in the modules directory (%s): %s", modDir, p) } files = append(files, p) }