diff options
author | Kevin Geiss <kevin@desertsol.com> | 2005-11-14 09:41:43 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-16 13:20:58 -0800 |
commit | ebdbfa8b556c9b4cebf27cb5f9364c9c19274620 (patch) | |
tree | 84a8d9dbb0e22476f07d83f289b969d00c02dcb7 /git-cvsexportcommit.perl | |
parent | 0ff2ce9d8a305038c0c116cd1e3b478a9f5b81c1 (diff) | |
download | git-ebdbfa8b556c9b4cebf27cb5f9364c9c19274620.tar.gz |
git-cvsexportcommit.perl: use getopts to get binary flags
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsexportcommit.perl')
-rwxr-xr-x | git-cvsexportcommit.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-cvsexportcommit.perl b/git-cvsexportcommit.perl index 5bce39c4c4..da7dcda3b6 100755 --- a/git-cvsexportcommit.perl +++ b/git-cvsexportcommit.perl @@ -12,7 +12,7 @@ unless ($ENV{GIT_DIR} && -r $ENV{GIT_DIR}){ our ($opt_h, $opt_p, $opt_v, $opt_c ); -getopt('hpvc'); +getopts('hpvc'); $opt_h && usage(); |