From: Sven Verdoolaege Date: Mon, 4 Jul 2005 13:35:30 +0000 (+0200) Subject: git-cvsimport-script: update cvsps cache instead of rebuilding it X-Git-Tag: v0.99~71^2^2^2~4 X-Git-Url: https://git.octo.it/?p=git.git;a=commitdiff_plain;h=6e7e37b0bfc921aa1f0cb30560fc128e87a41966 git-cvsimport-script: update cvsps cache instead of rebuilding it Updating the cache is sufficient for most purposes. If users really want to rebuild the cache, they can specify the option themselves. --- diff --git a/git-cvsimport-script b/git-cvsimport-script index 418c209c..62df9166 100755 --- a/git-cvsimport-script +++ b/git-cvsimport-script @@ -436,7 +436,7 @@ die "Cannot fork: $!\n" unless defined $pid; unless($pid) { my @opt; @opt = split(/,/,$opt_p) if defined $opt_p; - exec("cvsps",@opt,"-x","-A","--cvs-direct",'--root',$opt_d,$cvs_tree); + exec("cvsps",@opt,"-u","-A","--cvs-direct",'--root',$opt_d,$cvs_tree); die "Could not start cvsps: $!\n"; }