I'm deploying to a single server using Mercurial, and trying to get the file modification timestamps to stop changing on every deploy.
I've set set :deploy_via, :remote_cache set :copy_exclude, [".hg"] set :normalize_asset_timestamps, false After finding the timestamps still changed, I dug and found that remote_cache with a copy_exclude uses rsync to deploy. However, it looks like rsync is missing the '-t' parameter to preserve timestamps. For now I will just remove :copy_exclude, to revert to using a cp -p. Is there a chance to have '-t' added to the rsync command for the future though? Thanks, -Kevin --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
