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

@@ -649,6 +649,9 @@ func runSessionCheck(cmd *cobra.Command, args []string) error {
if !entry.IsDir() {
continue
}
if strings.HasPrefix(entry.Name(), ".") {
continue
}
polecatName := entry.Name()
sessionName := fmt.Sprintf("gt-%s-%s", r.Name, polecatName)
totalChecked++