From 70330b1cc3b3cb4c78bc42b74d654353ac0984e5 Mon Sep 17 00:00:00 2001 From: Ed Date: Thu, 6 Jul 2023 12:40:23 +0100 Subject: [PATCH] config: Fix documentation link --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index bcad028f..408125d2 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -448,7 +448,7 @@ func (c *Config) subPackages( if currentDepth == 0 && len(pkg.GoFiles) == 0 { log.Error(). Err(ErrNoGoFilesFoundInRoot). - Str("documentation", "https://vektra.github.io/mockery/notes/#error-no-go-files-found-in-root-search-path"). + Str("documentation", "https://vektra.github.io/mockery/latest/notes/#error-no-go-files-found-in-root-search-path"). Msg("package contains no go files") return nil, ErrNoGoFilesFoundInRoot }