diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-18 14:17:52 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-18 14:17:52 -0400 |
commit | 1cd480765f3cc4857a5946638255a194f15b1000 (patch) | |
tree | 8c9cd19c95def0e9561ecef5f19a586dc1953074 /Command/Map.hs | |
parent | bb9f61157d81479204c69144b1ad579a94ffed57 (diff) |
note where map is left in --fast mode
Diffstat (limited to 'Command/Map.hs')
-rw-r--r-- | Command/Map.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Command/Map.hs b/Command/Map.hs index 955010809..64137ebe3 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -46,7 +46,9 @@ start = do liftIO $ writeFile file (drawMap rs umap trusted) next $ next $ ifM (Annex.getState Annex.fast) - ( return True + ( do + showLongNote $ "left map in " ++ file + return True , do showLongNote $ "running: dot -Tx11 " ++ file showOutput |