Fix broken rcs_update for bzr. (Scott Bronson)
parent
e1d456a86f
commit
e4395a567b
|
@ -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,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
|
||||
|
||||
|
|
|
@ -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]]
|
||||
|
|
Loading…
Reference in New Issue