Using {targets} to manage a workflow, which is great.
We don't have a proper cluster setup, but I have access to remote machines with much better specs than my laptop, so I can use git to keep the plan in sync locally and remotely.
When I want to work with something locally, I use rsync
to move the files over.
rsync -avxP -e "ssh -p ..." remote:path/to/_targets .
When I query the remote cache with tar_network
, I see that a bunch of my targets are "uptodate".
When I query the local cache after the rsync
above, those same targets are "outdated".
I'm wondering if there is either better calls to rsync
or certain arguments to tar_network()
, or if this is a bug and the targets should stay as "uptodate" after an rsync
like this?