cvsimport: Don't let local settings hinder cvs user-migration.
authorAndreas Ericsson <exon@op5.se>
Fri, 25 Nov 2005 01:37:09 +0000 (02:37 +0100)
committerJunio C Hamano <junkio@cox.net>
Fri, 25 Nov 2005 11:38:18 +0000 (03:38 -0800)
Avoid this by passing "--norc" to cvsps.

Signed-off-by: Andreas Ericsson <ae@op5.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-cvsimport.perl

index efe1934..08a890c 100755 (executable)
@@ -502,7 +502,7 @@ unless($pid) {
        if ($opt_P) {
            exec("cat", $opt_P);
        } else {
-           exec("cvsps",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
+           exec("cvsps","--norc",@opt,"-u","-A",'--root',$opt_d,$cvs_tree);
            die "Could not start cvsps: $!\n";
        }
 }