Revert "original.yaml has just todo, merge against .original.yaml so mobile edits still get a history"

This reverts commit 242ad3e127.
This commit is contained in:
bel
2025-07-13 08:51:21 -06:00
parent 871e75f8a8
commit 263482f607
2 changed files with 2 additions and 15 deletions

View File

@@ -90,9 +90,7 @@ func (config config) targets() ([]string, error) {
for i := range results {
if stat, err := os.Stat(results[i]); err != nil {
return nil, err
} else if stat.IsDir() {
} else if strings.HasPrefix(path.Base(results[i]), ".") && isDir {
} else {
} else if !stat.IsDir() {
result = append(result, results[i])
}
}