diff options
author | Norbert Preining <preining@logic.at> | 2018-05-13 23:05:47 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-05-13 23:05:47 +0000 |
commit | 48bef887f5c895d62be4662ce37cdeb7b4da2f26 (patch) | |
tree | 296120e4ac14dc62184781f2023e727581b4bcb3 | |
parent | e6d38f40f0132914020c723840be3489c4b692f0 (diff) |
fix tl-update-containers warnings
git-svn-id: svn://tug.org/texlive/trunk@47706 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index 204540c6aff..05b58e83e63 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -211,7 +211,13 @@ sub main { # for my $name (qw(config installation installer image)) { my $tlp00 = $tlpdb->get_package("00texlive.$name"); - $nettlpdb->add_tlpobj($tlp00); + if ($tlp00) { + $nettlpdb->add_tlpobj($tlp00); + } else { + if ($name eq "config" || $name eq "installation") { + tlwarn("$0: essential package 00texlive.$name seems to be missing!\n"); + } + } } # set up the programs. |