diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-09 23:25:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-09 23:25:13 +0000 |
commit | 852cbceb0d76085ed59324284ea2d99a704a4002 (patch) | |
tree | af955340b26a4dcddb7d12cc9675af0286589fc2 | |
parent | dd15c1afd991b0560ed537a713e1bb9f0409ab00 (diff) |
skip all 00texlive.*\. packages here, too.
git-svn-id: svn://tug.org/texlive/trunk@8628 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index 416a65532a2..c5e71b6385f 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -179,10 +179,9 @@ sub main # # do a last check that all the containers are actually present foreach my $p ($tlpdb->list_packages) { - next if ($p eq "00texlive.config"); - next if ($p eq "00texlive.installer"); + next if $p =~ /00texlive.*\./; if (! -r "$opt_containerdir/$p.tar.lzma") { - info("container for $p is missing, strange!\n"); + info ("container for $p is missing, strange!\n"); } } } |