diff options
author | Martin Langhoff <martin@catalyst.net.nz> | 2005-11-02 01:53:23 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-02 01:57:53 +0100 |
commit | 9acb552d984f172f00bbb79888f4bdeb0032332f (patch) | |
tree | 687de7027b44564653a258f41dbaecffc509ce0a | |
parent | cvsimport: introduce -P <cvsps-output-file> option (diff) | |
download | git-9acb552d984f172f00bbb79888f4bdeb0032332f.tar.xz git-9acb552d984f172f00bbb79888f4bdeb0032332f.zip |
cvsimport: cvsps should be quiet too
Tell cvsps to be quiet, unless we've been told to be verbose.
Signed-off-by: Martin Langhoff <martin@catalyst.net.nz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-cvsimport.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 0144670a57..7bd9136205 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -491,6 +491,7 @@ unless($pid) { my @opt; @opt = split(/,/,$opt_p) if defined $opt_p; unshift @opt, '-z', $opt_z if defined $opt_z; + unshift @opt, '-q' unless defined $opt_v; unless (defined($opt_p) && $opt_p =~ m/--no-cvs-direct/) { push @opt, '--cvs-direct'; } |