From eea1e059f0c5d5590fb08e28e555e9c2e3a44f69 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 18 Apr 2025 21:29:21 +0000 Subject: [PATCH] docs: add missing words to comment --- cmd/readmevalidation/repoStructure.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/readmevalidation/repoStructure.go b/cmd/readmevalidation/repoStructure.go index f504f08b..6e68f4a8 100644 --- a/cmd/readmevalidation/repoStructure.go +++ b/cmd/readmevalidation/repoStructure.go @@ -39,7 +39,9 @@ func validateCoderResourceSubdirectory(dirPath string) []error { } for _, f := range files { // The .coder file is sometimes generated as part of Bun tests. These - // directories will never be committed to + // directories will never be committed to the repo, but in the off + // chance that they don't get cleaned up properly, we want to skip over + // them if !f.IsDir() || f.Name() == ".coder" { continue }