Skip dot dirs when scanning polecats

This commit is contained in:
joshuavial
2026-01-08 21:53:05 +13:00
parent 45634059dd
commit 85dd150d75
4 changed files with 208 additions and 1 deletions

View File

@@ -451,6 +451,9 @@ func startPolecatsWithWork(townRoot, rigName string) ([]string, map[string]error
if !entry.IsDir() {
continue
}
if strings.HasPrefix(entry.Name(), ".") {
continue
}
polecatName := entry.Name()
polecatPath := filepath.Join(polecatsDir, polecatName)