diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-09-19 14:26:03 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-09-19 14:26:03 -0400 |
commit | 52e55a040a29b03bc91482b03882cbf30f21330f (patch) | |
tree | 0105e9e86311985138653a4ed1e8673405cd9785 /Command | |
parent | 7d0d4d5b6ab2fd23c664742e5a1e7ed019b0c40d (diff) |
export --fast sets up but does not populate export
sync --content finishes
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Export.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/Export.hs b/Command/Export.hs index 0afcc3af1..f2bbcaf01 100644 --- a/Command/Export.hs +++ b/Command/Export.hs @@ -82,7 +82,8 @@ seek o = do db <- openDb (uuid r) ea <- exportActions r changeExport r ea db new - void $ fillExport r ea db new + unlessM (Annex.getState Annex.fast) $ + void $ fillExport r ea db new closeDb db -- | Changes what's exported to the remote. Does not upload any new |