From: Joey Hess Date: Fri, 6 Nov 2015 17:41:26 +0000 (-0400) Subject: missed adding allowConcurrentOutput here X-Git-Tag: archive/raspbian/10.20250416-2+rpi1~1^2~324^2~85 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8ea594f5655e6598c01dbe974b01e3e39e90613d;p=git-annex.git missed adding allowConcurrentOutput here --- diff --git a/Command/Copy.hs b/Command/Copy.hs index 1711b0c633..1fe31e36e0 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