diff options
-rwxr-xr-x | Master/tlpkg/bin/tlpdb2container | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tlpdb2container b/Master/tlpkg/bin/tlpdb2container index 2f77dd4acc6..d346da7690e 100755 --- a/Master/tlpkg/bin/tlpdb2container +++ b/Master/tlpkg/bin/tlpdb2container @@ -30,11 +30,11 @@ my $opt_outputdir = "./archive"; my $opt_relative = 0; my $help = 0; -GetOptions("outputdir=s" => \$opt_outputdir, - "all!" => \$opt_all, - "debug!" => \$opt_debug, - "relative!" => \$opt_relative, - "help|?" => \$help) or pod2usage(1); +GetOptions("o|outputdir=s" => \$opt_outputdir, + "a|all!" => \$opt_all, + "d|debug!" => \$opt_debug, + "r|relative!" => \$opt_relative, + "h|help|?" => \$help) or pod2usage(1); pod2usage(-exitstatus => 0, -verbose => 2) if $help; |