diff options
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index 7e0d5995ffb..7e935f9cc05 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,12 +1,12 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 59208 2021-05-15 17:45:58Z karl $ +# $Id: tlmgr.pl 59273 2021-05-19 23:02:14Z preining $ # # Copyright 2008-2021 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. -my $svnrev = '$Revision: 59208 $'; -my $datrev = '$Date: 2021-05-15 19:45:58 +0200 (Sat, 15 May 2021) $'; +my $svnrev = '$Revision: 59273 $'; +my $datrev = '$Date: 2021-05-20 01:02:14 +0200 (Thu, 20 May 2021) $'; my $tlmgrrevision; my $tlmgrversion; my $prg; @@ -398,6 +398,11 @@ sub main { GetOptions(\%opts, keys(%optarg)) or pod2usage(2); + # load the config file and set the config options + # load it BEFORE starting downloads as we set persistent-downloads there! + load_config_file(); + + $::debug_translation = 0; $::debug_translation = 1 if $opts{"debug-translation"}; @@ -669,10 +674,6 @@ for the full story.\n"; $loadmediasrcerror = "Cannot load TeX Live database from "; - # load the config file and set the config options - # load it BEFORE starting downloads as we set persistent-downloads there! - load_config_file(); - # in system mode verify that the selected action is allowed if (!$opts{"usermode"} && $config{'allowed-actions'}) { if (!TeXLive::TLUtils::member($action, @{$config{'allowed-actions'}})) { @@ -10224,7 +10225,7 @@ This script and its documentation were written for the TeX Live distribution (L<https://tug.org/texlive>) and both are licensed under the GNU General Public License Version 2 or later. -$Id: tlmgr.pl 59208 2021-05-15 17:45:58Z karl $ +$Id: tlmgr.pl 59273 2021-05-19 23:02:14Z preining $ =cut # test HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html |