1 I don't know what's wrong but I can't add a file with the mercurial backend (the file is created but not added).
3 Here is a patch that's seems to work, although I'm not quite sure what's wrong with current code :
5 hbernard@tactic:/usr/share/perl5/IkiWiki/Rcs$ diff mercurial.pm /home/hbernard/mercurial.pm -Nau
6 --- mercurial.pm 2007-03-24 16:14:35.000000000 +0100
7 +++ /home/hbernard/mercurial.pm 2007-04-19 19:05:47.000000000 +0200
9 sub rcs_add ($) { # {{{
12 - my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$file");
13 + my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$config{srcdir}/$file");
14 if (system(@cmdline) != 0) {
15 warn "'@cmdline' failed: $!";
18 My srcdir path has some symbolics links and hidden directorys... maybe that's it ?