]> git.eshelyaron.com Git - emacs.git/commitdiff
* autogen/update_autogen: Make bzr commit respect -q option.
authorGlenn Morris <rgm@gnu.org>
Mon, 21 Mar 2011 00:08:01 +0000 (17:08 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 21 Mar 2011 00:08:01 +0000 (17:08 -0700)
autogen/update_autogen

index e73bf16a6108de87fdb62e523d5e459895c2de6b..0b26dd27d2b5a3c9c59424f08dcc6643476337f2 100755 (executable)
@@ -169,7 +169,10 @@ msg "Committing..."
 ## bzr status output is annoyingly always relative to top-level, not PWD.
 cd ../
 
-bzr commit -m "Auto-commit of generated files." $modified || \
+opt=
+[ "$quiet" ] || opt=-q
+
+bzr commit $opt -m "Auto-commit of generated files." $modified || \
     die "bzr commit error"