diff options
author | Joey Hess <joey@kitenet.net> | 2014-08-26 17:06:43 -0700 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-08-26 17:10:25 -0700 |
commit | f04fc3ca095f2372c9bb43ef5b884ed112d34eff (patch) | |
tree | 71b7b1ea09f7f1d7bf964544c1c04eb7259abf15 /Command/TestRemote.hs | |
parent | 7924eb9422a949bbca80d7abc516eba0d9467f14 (diff) |
Do not preserve permissions and acls when copying files from one local git repository to another. Timestamps are still preserved as long as cp --preserve=timestamps is supported.
This avoids cp -a overriding the default mode acls that the user might have
set in a git repository.
With GNU cp, this behavior change should not be a breaking change, because
git-anex also uses rsync sometimes in the same situation, and has only ever
preserved timestamps when using rsync.
Systems without GNU cp will no longer use cp -a, but instead just cp.
So, timestamps will no longer be preserved. Preserving timestamps when
copying between repos is not guaranteed anyway.
Closes: #729757
Diffstat (limited to 'Command/TestRemote.hs')
-rw-r--r-- | Command/TestRemote.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/TestRemote.hs b/Command/TestRemote.hs index 1cb1929e0..247a243e4 100644 --- a/Command/TestRemote.hs +++ b/Command/TestRemote.hs @@ -136,7 +136,7 @@ test st r k = , check "retrieveKeyFile resume from end" $ do loc <- Annex.calcRepo (gitAnnexLocation k) tmp <- prepTmp k - void $ liftIO $ copyFileExternal loc tmp + void $ liftIO $ copyFileExternal CopyAllMetaData loc tmp lockContent k removeAnnex get , check "fsck downloaded object" fsck |