diff options
author | Norbert Preining <preining@logic.at> | 2020-03-16 08:07:32 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2020-03-16 08:07:32 +0000 |
commit | 0cdc5e10e3c5bc664d3c237030ce41908fb96327 (patch) | |
tree | 4aaaff2a537ce4c1299b01bc284a88eeb9cd1841 | |
parent | 0e437044ac091b298f43fff6d7fcfc916ca64006 (diff) |
tlmgr update --all --force should not update infra (w32)
git-svn-id: svn://tug.org/texlive/trunk@54347 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 553b3a944db..981a1fbf91d 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -3517,7 +3517,7 @@ sub action_update { } # infra update and tlmgr restart on w32 is done by the updater batch script - if (win32() && !$opts{"list"} && @critical) { + if (win32() && $opts{'self'} && !$opts{"list"} && @critical) { info("$prg: Preparing TeX Live infrastructure update...\n"); for my $f (@infra_files_to_be_removed) { debug("file scheduled for removal $f\n"); |