diff options
author | Norbert Preining <preining@logic.at> | 2009-05-16 06:18:53 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-05-16 06:18:53 +0000 |
commit | ff781718f17704be316b9c601ea96c625a9be7b4 (patch) | |
tree | 8d32cb5df24ffd8b66527b5a48313c33e4e7adc5 | |
parent | ab1f816d84054430f87096da0950853d6aaa5071 (diff) |
make $opt_relative defaulting to 1, and allow --norelative (Getopt::Long
using "relative!" => \$opt_relative.
git-svn-id: svn://tug.org/texlive/trunk@13116 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index 6a085466b95..59adf6cdc9c 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -31,7 +31,7 @@ my $opt_all = 0; my $opt_location = "."; my $opt_nosetup = 0; my $opt_recreate = 0; -my $opt_relative = 0; +my $opt_relative = 1; my $opt_version = 0; my $opt_help = 0; my $opt_dry = 0; @@ -43,7 +43,7 @@ GetOptions( "location=s" => \$opt_location, "no-setup" => \$opt_nosetup, "recreate" => \$opt_recreate, - "relative" => \$opt_relative, + "relative!" => \$opt_relative, "version" => \$opt_version, "help|?" => \$opt_help) or pod2usage(1); |