diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-22 12:20:14 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-22 12:20:14 -0800 |
commit | bf3f67ba718393fb2b5fd5d4fc861029d4578a8a (patch) | |
tree | deb834081540b9900b6826de72f8632706d8a3cf /git-cvsimport.perl | |
parent | 67e4baf82679e6362d950f6a80a9a261cf266555 (diff) | |
download | git-bf3f67ba718393fb2b5fd5d4fc861029d4578a8a.tar.gz |
cvsimport: activate -a option, really.
An earlier commit ded9f400 added $opt_a support to disable the
cvsps grace period mechanism, but forgot to tell the option
parser about it.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsimport.perl')
-rwxr-xr-x | git-cvsimport.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsimport.perl b/git-cvsimport.perl index 35ef0c0ee5..6c9fbfec3a 100755 --- a/git-cvsimport.perl +++ b/git-cvsimport.perl @@ -85,7 +85,7 @@ sub write_author_info($) { close ($f); } -getopts("hivmkuo:d:p:C:z:s:M:P:A:S:L:") or usage(); +getopts("haivmkuo:d:p:C:z:s:M:P:A:S:L:") or usage(); usage if $opt_h; @ARGV <= 1 or usage(); |