summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-01-11 18:49:45 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-01-11 18:49:45 -0400
commitcaa0b6c0c275ed85567112c273b49e7905bb4b14 (patch)
tree52f9682b5ccc2f6c9f81bc431027637343aa5738
parent730c273eae055eaed743593b6ab7274e210bf4e3 (diff)
quiet git commit messages
-rw-r--r--Command/Trust.hs2
-rw-r--r--Command/Untrust.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Command/Trust.hs b/Command/Trust.hs
index 35ddefe84..c97d75ee4 100644
--- a/Command/Trust.hs
+++ b/Command/Trust.hs
@@ -40,5 +40,5 @@ perform repo = do
g <- Annex.gitRepo
logfile <- trustLog
liftIO $ Git.run g ["add", logfile]
- liftIO $ Git.run g ["commit", "-m", "git annex untrust", logfile]
+ liftIO $ Git.run g ["commit", "-q", "-m", "git annex untrust", logfile]
return $ Just $ return True
diff --git a/Command/Untrust.hs b/Command/Untrust.hs
index f49a2e989..01b97b1c1 100644
--- a/Command/Untrust.hs
+++ b/Command/Untrust.hs
@@ -40,5 +40,5 @@ perform repo = do
g <- Annex.gitRepo
logfile <- trustLog
liftIO $ Git.run g ["add", logfile]
- liftIO $ Git.run g ["commit", "-m", "git annex untrust", logfile]
+ liftIO $ Git.run g ["commit", "-q", "-m", "git annex untrust", logfile]
return $ Just $ return True