Here is a little script I wrote to update the repository information - in this
way, you don't need to do a new checkout and then merge. cd into your CVS tree,
then run 'update_rep .' to update the entries.
#!/usr/bin/perl
use File::Find;
find(\&wanted, "$ARGV[0]");
sub wanted {
if ($_ eq "Root") {
$file=$_;
open(IN,"<$file");
$contents = <IN>;
close(IN);
$contents =~ s#cvs.sourceforge.net#crossfire.cvs.sourceforge.net#;
open(IN,">$file");
print IN $contents;
close(IN);
}
}
_______________________________________________
crossfire mailing list
[email protected]
http://mailman.metalforge.org/mailman/listinfo/crossfire