refactor: remove directory validation from contributors file

This commit is contained in:
Michael Smith 2025-04-18 20:51:18 +00:00
parent 1a5c102c2f
commit 52c1f45da6

View File

@ -307,7 +307,6 @@ func aggregateContributorReadmeFiles() ([]readme, error) {
for _, e := range dirEntries {
dirPath := path.Join(rootRegistryPath, e.Name())
if !e.IsDir() {
problems = append(problems, fmt.Errorf("detected non-directory file %q at base of main Registry directory", dirPath))
continue
}