sub rcs_add ($) { # {{{
my ($file) = @_;
- my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$file");
+ my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$config{srcdir}/$file");
if (system(@cmdline) != 0) {
warn "'@cmdline' failed: $!";
}
* Updated Polish translation from Pawel Tecza.
* Updated Czech translation from Miroslav Kure.
* Updated Spanish translation from Victor Moral.
+ * Apply patch from hb that uses the full path to a file when adding a file
+ using the mercurial backend. Not 100% sure why it failed w/o the full
+ path, but this still passes the test suite, and indeed, is how the test
+ suite calls hg add.
- -- Joey Hess <joeyh@debian.org> Sat, 28 Apr 2007 22:47:38 -0400
+ -- Joey Hess <joeyh@debian.org> Sat, 28 Apr 2007 23:51:35 -0400
ikiwiki (1.50) unstable; urgency=low
--- /dev/null
+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).
+
+Here is a patch that's seems to work, although I'm not quite sure what's wrong with current code :
+
+ hbernard@tactic:/usr/share/perl5/IkiWiki/Rcs$ diff mercurial.pm /home/hbernard/mercurial.pm -Nau
+ --- mercurial.pm 2007-03-24 16:14:35.000000000 +0100
+ +++ /home/hbernard/mercurial.pm 2007-04-19 19:05:47.000000000 +0200
+ @@ -95,7 +95,7 @@
+ sub rcs_add ($) { # {{{
+ my ($file) = @_;
+
+ - my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$file");
+ + my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$config{srcdir}/$file");
+ if (system(@cmdline) != 0) {
+ warn "'@cmdline' failed: $!";
+ }
+
+My srcdir path has some symbolics links and hidden directorys... maybe that's it ?
+
+> Interesting, the mercurial test suite shows the add without the path
+> working ok. OTOH, it also continues to work if I apply your patch, so I
+> guess it's safe enough. It would be good to know why it's failing w/o the
+> path in your case. --[[Joey]]
+
+> As I applied the patch, I'm moving this out of the patchqueue to bugs and
+> marking it [[done]]. --[[Joey]]
+++ /dev/null
-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).
-
-Here is a patch that's seems to work, although I'm not quite sure what's wrong with current code :
-
- hbernard@tactic:/usr/share/perl5/IkiWiki/Rcs$ diff mercurial.pm /home/hbernard/mercurial.pm -Nau
- --- mercurial.pm 2007-03-24 16:14:35.000000000 +0100
- +++ /home/hbernard/mercurial.pm 2007-04-19 19:05:47.000000000 +0200
- @@ -95,7 +95,7 @@
- sub rcs_add ($) { # {{{
- my ($file) = @_;
-
- - my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$file");
- + my @cmdline = ("hg", "-q", "-R", "$config{srcdir}", "add", "$config{srcdir}/$file");
- if (system(@cmdline) != 0) {
- warn "'@cmdline' failed: $!";
- }
-
-My srcdir path has some symbolics links and hidden directorys... maybe that's it ?