From 24dbab68132a719e3b0e1ada8a61aeba833355f0 Mon Sep 17 00:00:00 2001 From: Catherine Date: Sun, 14 Dec 2025 19:47:28 +0000 Subject: [PATCH] Begin paths with / in problem report. Otherwise you get reports like: (archive) : directory shadows redirect "/ /foo 301"; remove the directory or use a 301! forced redirect instead --- src/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.go b/src/manifest.go index b84a194..dfc0345 100644 --- a/src/manifest.go +++ b/src/manifest.go @@ -148,7 +148,7 @@ func GetProblemReport(manifest *Manifest) []string { var report []string for _, problem := range manifest.Problems { report = append(report, - fmt.Sprintf("%s: %s", problem.GetPath(), problem.GetCause())) + fmt.Sprintf("/%s: %s", problem.GetPath(), problem.GetCause())) } return report }