Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2005-07-04 17:35:30 +0400
committerSven Verdoolaege <skimo@kotnet.org>2005-07-04 17:35:30 +0400
commit6e7e37b0bfc921aa1f0cb30560fc128e87a41966 (patch)
tree12a9303d4ba4566d9e081b2c375648685ce41e93 /git-cvsimport-script
parent46e63efc072bc440e4c6aad33d3157b70f5172b6 (diff)
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.
Diffstat (limited to 'git-cvsimport-script')
-rwxr-xr-xgit-cvsimport-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport-script b/git-cvsimport-script
index 418c209c80..62df91666e 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";
}