diff options
author | Martin Langhoff <martin@catalyst.net.nz> | 2005-11-02 13:53:23 +1300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-01 16:57:53 -0800 |
commit | 9acb552d984f172f00bbb79888f4bdeb0032332f (patch) | |
tree | 687de7027b44564653a258f41dbaecffc509ce0a /git-cvsimport.perl | |
parent | 211dcac6430cdf77fcf2a968ffaf9313b5c059b0 (diff) | |
download | git-9acb552d984f172f00bbb79888f4bdeb0032332f.tar.gz |
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>
Diffstat (limited to 'git-cvsimport.perl')
-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'; } |