diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-10-16 14:10:03 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-10-16 14:10:20 -0400 |
commit | 95697161487c5df3d8a88cdccbc40fd0c4d7b094 (patch) | |
tree | 7fb5769ee098ddafb445e587f550a22c4f1f49c9 /Command/Unlock.hs | |
parent | fb899e75cf1ac84f3fd61ea39288811bacddee2c (diff) |
Avoid repeated checking that files passed on the command line exist.
git annex add, git annex lock etc make multiple seek passes,
and each seek pass checked that files existed. That was unncessary
redundant work.
Fixed by adding a new WorkTreeItem type, make seek actions use it,
and check that the files exist when constructing it.
This commit was supported by the NSF-funded DataLad project.
Diffstat (limited to 'Command/Unlock.hs')
-rw-r--r-- | Command/Unlock.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Unlock.hs b/Command/Unlock.hs index 0ac221c1f..274f4af3c 100644 --- a/Command/Unlock.hs +++ b/Command/Unlock.hs @@ -30,7 +30,7 @@ mkcmd n d = notDirect $ withGlobalOptions annexedMatchingOptions $ command n SectionCommon d paramPaths (withParams seek) seek :: CmdParams -> CommandSeek -seek = withFilesInGit $ whenAnnexed start +seek ps = withFilesInGit (whenAnnexed start) =<< workTreeItems ps {- Before v6, the unlock subcommand replaces the symlink with a copy of - the file's content. In v6 and above, it converts the file from a symlink |