I've a ~/development/project directory which is manually marked as excluded from Time Machine.
Previously asimov would iterate over its subdirectories, now it won't.
Also, subsequent runs could benefit from that feature.
Using mdfind instead of find "${ASIMOV_ROOT}" -type d -xattrname "com.apple.metadata:com_apple_backup_excludeItem" -prune -print as it's superfast. Though it has a downside: some excluded directories are not reported.
I've a
~/development/project
directory which is manually marked as excluded from Time Machine. Previouslyasimov
would iterate over its subdirectories, now it won't.Also, subsequent runs could benefit from that feature.
Using
mdfind
instead offind "${ASIMOV_ROOT}" -type d -xattrname "com.apple.metadata:com_apple_backup_excludeItem" -prune -print
as it's superfast. Though it has a downside: some excluded directories are not reported.