playworks converter

This commit is contained in:
2026-05-28 14:23:48 +08:00
parent cce30c0729
commit 2921d4d384
13 changed files with 27 additions and 30 deletions

View File

@@ -44,6 +44,9 @@ func collectDogCat3MraidTargets(root string) ([]string, error) {
dir := filepath.Join(root, folder)
entries, err := os.ReadDir(dir)
if err != nil {
if os.IsNotExist(err) {
continue
}
return nil, err
}
for _, entry := range entries {