blob: bf715a29e3936916415f2280b0c6dc44c8eac8aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
On Line #46 of the `bzr` plugin there's a mistalke. Instead of:
my @cmdline = ("bzr", $config{srcdir}, "update");
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]]
|