I maintain one old Nanoc site that uses rsync (on more recent sites I've set up deploy to use Git and SSH instead). On OS X Monterey (and, I think earlier) OS X security measures cause rsync to fail. I used Homebrew to install an rsync that (pathetic but accurate description) "can access all my files" and it works.
One rsync issue (in case anyone else had the issue) is new files sometimes have restrictive permissions (e.g. images someone sends for a website update) so need `chmod 644`.
However, my current rsync issue is that `nanoc deploy` with rsync, copies all the .DS_Store files to the server.
I can't add the necessary `rsync -r --exclude=".DS_Store" to the Rules, so where could I add that command or something else to do the job in the Nanoc deploy chain?