aboutsummaryrefslogtreecommitdiff
path: root/bzr.rb
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-06-14 22:34:33 +0200
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-06-14 22:34:33 +0200
commite44d4f91fc2e9b6b2142da071fce980ef0d6ee53 (patch)
tree3830485ea2ca25c68f0c8096af028374158944c3 /bzr.rb
parentc933e165e5e76fbc5b44336bd88a3e930c8d2e48 (diff)
ommit output to stderr
Diffstat (limited to '')
-rw-r--r--bzr.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bzr.rb b/bzr.rb
index 2796e6c..8f74edb 100644
--- a/bzr.rb
+++ b/bzr.rb
@@ -25,7 +25,7 @@ class VCS
File.open(tmpfile,"w"){|f|
f<<comment
}
- ret = `#{BZRCMD} commit -F #{tmpfile}`
+ ret = `#{BZRCMD} commit -q -F #{tmpfile}`
File.delete(tmpfile)
ret
end