summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-update-containers
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin/tl-update-containers')
-rwxr-xr-xMaster/tlpkg/bin/tl-update-containers7
1 files changed, 2 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers
index 38173526582..b42ff669e41 100755
--- a/Master/tlpkg/bin/tl-update-containers
+++ b/Master/tlpkg/bin/tl-update-containers
@@ -29,9 +29,6 @@ use File::Path;
my $script_master;
-# packages matching these re's will not be updated without --all.
-my @critical_pkg_list = qw/texlive\.infra tlperl\.win32/;
-
our ($mydir, $vc_id);
my $opt_all = 0;
my $opt_dry = 0;
@@ -244,7 +241,7 @@ sub main {
# get list of packages.
PACKS: for my $pkg (sort @todopacks) {
next if $pkg =~ /00texlive/;
- foreach my $manualpkgre (@critical_pkg_list) {
+ foreach my $manualpkgre (@TeXLive::TLConfig::CriticalPackagesList) {
# we match the initial string of the package name, so that all the
# .arch packages are skipped, too
if ($pkg =~ m/^$manualpkgre/) {
@@ -371,7 +368,7 @@ sub main {
}
# next we remove containers for packages that have been deleted.
REMOVEPACK: for my $op (@removepacks) {
- foreach my $manualpkgre (@critical_pkg_list) {
+ foreach my $manualpkgre (@TeXLive::TLConfig::CriticalPackagesList) {
# we match the initial string of the package name, so that all the
# .arch packages are skipped, too
if ($op =~ m/^$manualpkgre/) {