diff options
-rw-r--r-- | Command/Add.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Command/Add.hs b/Command/Add.hs index f4bdc70c9..948a0d94c 100644 --- a/Command/Add.hs +++ b/Command/Add.hs @@ -33,6 +33,7 @@ import Annex.ReplaceFile import Utility.Tmp import Utility.CopyFile import Annex.InodeSentinal +import Annex.Version import Control.Exception (IOException) @@ -67,7 +68,8 @@ seek o = allowConcurrentOutput $ do go $ withFilesNotInGit (not $ includeDotFiles o) ifM isDirect ( go withFilesMaybeModified - , go withFilesUnlocked + , unlessM versionSupportsUnlockedPointers $ + go withFilesUnlocked ) {- Pass file off to git-add. -} |