aboutsummaryrefslogtreecommitdiff
path: root/Command/Unannex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-12-22 14:50:20 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-12-22 14:50:20 -0400
commit7892397020fe345886ef9aa84a6c1580ebee5348 (patch)
tree929f15e4d40bc1f5d095a384273e55d7637f8fdc /Command/Unannex.hs
parent6bffe509d7f1ec60168522585925a43dbfffbd36 (diff)
improve output
Diffstat (limited to 'Command/Unannex.hs')
-rw-r--r--Command/Unannex.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Command/Unannex.hs b/Command/Unannex.hs
index 8a511bf4d..66611cbd7 100644
--- a/Command/Unannex.hs
+++ b/Command/Unannex.hs
@@ -41,8 +41,10 @@ cleanup file key = do
-- pre-commit hook if this file is later added back to
-- git as a normal, non-annexed file.
whenM (not . null <$> inRepo (LsFiles.staged [file])) $ do
+ showOutput
inRepo $ Git.Command.run "commit" [
- Param "-m", Param "content removed from git annex",
+ Param "-q",
+ Params "-m", Param "content removed from git annex",
Param "--", File file]
fast <- Annex.getState Annex.fast