diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-06 13:41:26 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-06 13:41:26 -0400 |
commit | b6f03f9298265d559e5918fa89e482ea3a2483a9 (patch) | |
tree | f5c905c9878a17e624bd778c0b91d937315b58b1 | |
parent | 86ed6532c32c44db6b3e0ff5e78d0098bd207522 (diff) |
missed adding allowConcurrentOutput here
-rw-r--r-- | Command/Copy.hs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Command/Copy.hs b/Command/Copy.hs index 1711b0c63..1fe31e36e 100644 --- a/Command/Copy.hs +++ b/Command/Copy.hs @@ -36,10 +36,11 @@ instance DeferredParseClass CopyOptions where <*> pure (autoMode v) seek :: CopyOptions -> CommandSeek -seek o = withKeyOptions (Command.Move.keyOptions $ moveOptions o) (autoMode o) - (Command.Move.startKey (moveOptions o) False) - (withFilesInGit $ whenAnnexed $ start o) - (Command.Move.moveFiles $ moveOptions o) +seek o = allowConcurrentOutput $ + withKeyOptions (Command.Move.keyOptions $ moveOptions o) (autoMode o) + (Command.Move.startKey (moveOptions o) False) + (withFilesInGit $ whenAnnexed $ start o) + (Command.Move.moveFiles $ moveOptions o) {- A copy is just a move that does not delete the source file. - However, auto mode avoids unnecessary copies, and avoids getting or |