diff options
author | Norbert Preining <preining@logic.at> | 2008-10-18 08:38:08 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-18 08:38:08 +0000 |
commit | 653c187ca2ee4163bdbf762866de8a7e5cd3575e (patch) | |
tree | 0deaade5632c9348ce25d1ad4cccd9cb28182133 /Master/texmf/scripts | |
parent | 101579fab0f92a2cd655010a6ecbc167cee88b9c (diff) |
do not warn on packages that have been auto-removed
git-svn-id: svn://tug.org/texlive/trunk@11003 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index df254f4c82d..cf5ff9e5aab 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1027,6 +1027,9 @@ sub action_update { next; } elsif ($newpkgs{$pkg}) { # do nothing here, it will be reported below! + } elsif (defined($removals{$pkg})) { + # do nothing, this package has been removed due to server removal + # so don't warn here } else { tlwarn("\nShould not happen, please report: " . "$pkg mentioned, but neither new nor forcibly removed\n"); |