]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/bzr-update-syntax-error.mdwn
add link to Debian bug report.
[ikiwiki.git] / doc / bugs / bzr-update-syntax-error.mdwn
1 On [Line #46 of the `bzr` plugin](http://git.ikiwiki.info/?p=ikiwiki;a=blob;f=IkiWiki/Rcs/bzr.pm;h=526036bf36e0ce5ec6fab47cb8a46991d2ebe0b2;hb=HEAD#l46) there's a mistalke. Instead of:
2
3     my @cmdline = ("bzr", $config{srcdir}, "update");
4
5 It should be:
6
7     my @cmdline = ("bzr", "update", $config{srcdir});
8
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._".
10
11 [[done]], thanks --[[Joey]]