summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
Diffstat (limited to 'Command')
-rw-r--r--Command/Export.hs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Command/Export.hs b/Command/Export.hs
index 52355e69d..8f1a6f149 100644
--- a/Command/Export.hs
+++ b/Command/Export.hs
@@ -10,6 +10,7 @@
module Command.Export where
import Command
+import qualified Annex
import qualified Git
import qualified Git.DiffTree
import qualified Git.LsTree
@@ -144,10 +145,12 @@ seek o = do
-- Waiting until now to record the export guarantees that,
-- if this export is interrupted, there are no files left over
-- from a previous export, that are not part of this export.
- recordExport (uuid r) $ ExportChange
- { oldTreeish = map exportedTreeish old
- , newTreeish = new
- }
+ c <- Annex.getState Annex.errcounter
+ when (c == 0) $
+ recordExport (uuid r) $ ExportChange
+ { oldTreeish = map exportedTreeish old
+ , newTreeish = new
+ }
-- Export everything that is not yet exported.
(l, cleanup') <- inRepo $ Git.LsTree.lsTree new