Fix broken rcs_update for bzr. (Scott Bronson)

master
Joey Hess 2008-04-10 17:41:43 -04:00
parent e1d456a86f
commit e4395a567b
3 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,7 @@ sub bzr_log ($) { #{{{
} #}}}
sub rcs_update () { #{{{
my @cmdline = ("bzr", $config{srcdir}, "update");
my @cmdline = ("bzr", "update", $config{srcdir});
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}

1
debian/changelog vendored
View File

@ -1,6 +1,7 @@
ikiwiki (2.43) UNRELEASED; urgency=low
* Fix missing import of escapeHTML in userlink. (Scott Bronson)
* Fix broken rcs_update for bzr. (Scott Bronson)
-- Joey Hess <joeyh@debian.org> Thu, 10 Apr 2008 17:36:53 -0400

View File

@ -7,3 +7,5 @@ It should be:
my @cmdline = ("bzr", "update", $config{srcdir});
The former produces errors such as "_bzr: ERROR: unknown command "/home/user/ikiwiki/posts_", "_'bzr /home/user/ikiwiki/posts update' failed: Inappropriate ioctl for device at /usr/share/perl5/IkiWiki/Rcs/bzr.pm line 48._".
[[done]], thanks --[[Joey]]