]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/bzr-update-syntax-error.mdwn
ikiwiki (3.20130711) unstable; urgency=low
[git.ikiwiki.info.git] / doc / bugs / bzr-update-syntax-error.mdwn
1 On Line #46 of the `bzr` plugin there's a mistalke. Instead of:
3     my @cmdline = ("bzr", $config{srcdir}, "update");
5 It should be:
7     my @cmdline = ("bzr", "update", $config{srcdir});
9 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._".
11 [[done]], thanks --[[Joey]]