summaryrefslogtreecommitdiff
path: root/Command/PreCommit.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-12-15 14:08:07 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-12-15 14:08:07 -0400
commit4419ed21e64d5713e83503b1b9b6120ba10cd1b6 (patch)
treebfe1dbbcf8d48463a4c39420dc9c1dfdd71197b4 /Command/PreCommit.hs
parent65b70a1164f69e198ef135e62bdc92e8c4332582 (diff)
rename stuff for v5 unlocked files to indicate it's old
Diffstat (limited to 'Command/PreCommit.hs')
-rw-r--r--Command/PreCommit.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/PreCommit.hs b/Command/PreCommit.hs
index b6f52d01c..71a9f86f8 100644
--- a/Command/PreCommit.hs
+++ b/Command/PreCommit.hs
@@ -46,7 +46,7 @@ seek ps = lockPreCommitHook $ ifM isDirect
ifM (liftIO Git.haveFalseIndex)
( do
(fs, cleanup) <- inRepo $ Git.typeChangedStaged ps
- whenM (anyM isUnlocked fs) $
+ whenM (anyM isOldUnlocked fs) $
error "Cannot make a partial commit with unlocked annexed files. You should `git annex add` the files you want to commit, and then run git commit."
void $ liftIO cleanup
, do
@@ -58,7 +58,7 @@ seek ps = lockPreCommitHook $ ifM isDirect
-- (not needed when repo version uses
-- unlocked pointer files)
unlessM versionSupportsUnlockedPointers $
- withFilesUnlockedToBeCommitted startInjectUnlocked ps
+ withFilesOldUnlockedToBeCommitted startInjectUnlocked ps
)
runAnnexHook preCommitAnnexHook
-- committing changes to a view updates metadata