]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-svn: quiet some warnings when run only with --version/--help
authorEric Wong <normalperson@yhbt.net>
Tue, 17 Apr 2007 09:41:43 +0000 (02:41 -0700)
committerJunio C Hamano <junkio@cox.net>
Tue, 17 Apr 2007 10:33:22 +0000 (03:33 -0700)
These are harmless but annoying.  They were introduced in
512b620bd9fef7f170562ecad835e37479f051ce

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-svn.perl

index 7ebd07b7936e51f7f5f68f3bd2fc8cd08eef53db..4d3c453bf2154f78f89d27b0526916808af1cddb 100755 (executable)
@@ -168,14 +168,14 @@ for (my $i = 0; $i < @ARGV; $i++) {
 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
 
 read_repo_config(\%opts);
-Getopt::Long::Configure('pass_through') if $cmd eq 'log';
+Getopt::Long::Configure('pass_through') if ($cmd && $cmd eq 'log');
 my $rv = GetOptions(%opts, 'help|H|h' => \$_help, 'version|V' => \$_version,
                     'minimize-connections' => \$Git::SVN::Migration::_minimize,
                     'id|i=s' => \$Git::SVN::default_ref_id,
                     'svn-remote|remote|R=s' => sub {
                        $Git::SVN::no_reuse_existing = 1;
                        $Git::SVN::default_repo_id = $_[1] });
-exit 1 if (!$rv && $cmd ne 'log');
+exit 1 if (!$rv && $cmd && $cmd ne 'log');
 
 usage(0) if $_help;
 version() if $_version;