Thanks for the prompt response Mark... If you like, I'm more than happy to help with documentation.
When I run bin/cvsreport.pl I get an error message suggesting that Mecurial isn't installed! Which certainly isn't the case. i.e.,
dw@dreamwidth:~$ bin/cvsreport.pl --checkout abort: destination '/home/dw/cvs/perlbal' already exists Failed to run hg: is it installed? at /home/dw/bin/vcv line 202, line 17.
The relevant code fragment seems to suggest that install directory for Mecurial (which is done by package much earlier in the piece) hasn't been associated properly..
unless (-d $full_ldir && -d $full_ldir_svn) { unless ($opt_checkout) { die "Mercurial directory '$ldir' doesn't exist under $DIR_CVS. " . "Re-run vcv with --checkout for me to automatically get it for you.\n"; } my @opts; if ($rev) { push @opts, "-r", $rev; } system("hg", "clone", @opts, $src, $full_ldir) and die "Failed to run hg: is it installed?";
no subject
When I run bin/cvsreport.pl I get an error message suggesting that Mecurial isn't installed! Which certainly isn't the case. i.e.,
dw@dreamwidth:~$ bin/cvsreport.pl --checkout
abort: destination '/home/dw/cvs/perlbal' already exists
Failed to run hg: is it installed? at /home/dw/bin/vcv line 202, line 17.
The relevant code fragment seems to suggest that install directory for Mecurial (which is done by package much earlier in the piece) hasn't been associated properly..
unless (-d $full_ldir && -d $full_ldir_svn) {
unless ($opt_checkout) {
die "Mercurial directory '$ldir' doesn't exist under $DIR_CVS. " .
"Re-run vcv with --checkout for me to automatically get it for you.\n";
}
my @opts;
if ($rev) { push @opts, "-r", $rev; }
system("hg", "clone", @opts, $src, $full_ldir) and
die "Failed to run hg: is it installed?";