summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-04-10 17:44:40 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-04-10 17:44:40 -0400
commitb698bf24082b2de96dc7bba92ecfbc20e650c0ea (patch)
tree7bfa3be090186adb43153ab5da3bbad34a23a55b /IkiWiki
parente4395a567b95d4adeda54add09faf180cf29ee76 (diff)
Use bzr --quiet to avoid it outputting stuff and messing up http headers. (Scott Bronson)
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Rcs/bzr.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/IkiWiki/Rcs/bzr.pm b/IkiWiki/Rcs/bzr.pm
index 7ab2fd2c5..af311fab8 100644
--- a/IkiWiki/Rcs/bzr.pm
+++ b/IkiWiki/Rcs/bzr.pm
@@ -43,7 +43,7 @@ sub bzr_log ($) { #{{{
} #}}}
sub rcs_update () { #{{{
- my @cmdline = ("bzr", "update", $config{srcdir});
+ my @cmdline = ("bzr", "update", "--quiet", $config{srcdir});
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
@@ -71,7 +71,7 @@ sub rcs_commit ($$$;$$) { #{{{
$message = "no message given";
}
- my @cmdline = ("bzr", "commit", "-m", $message, "--author", $user,
+ my @cmdline = ("bzr", "commit", "--quiet", "-m", $message, "--author", $user,
$config{srcdir}."/".$file);
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
@@ -83,7 +83,7 @@ sub rcs_commit ($$$;$$) { #{{{
sub rcs_add ($) { # {{{
my ($file) = @_;
- my @cmdline = ("bzr", "add", "$config{srcdir}/$file");
+ my @cmdline = ("bzr", "add", "--quiet", "$config{srcdir}/$file");
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}