summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-update-ctan-mirrors
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-04-27 17:23:52 +0000
committerKarl Berry <karl@freefriends.org>2020-04-27 17:23:52 +0000
commit94216ed129278bf70ac83a4fb3c4e8f117fac5fa (patch)
treea70ef8a0e168a1ec78485ed6921d3f6c2918aa98 /Master/tlpkg/bin/tl-update-ctan-mirrors
parent63703a242cd8ba25502923c64c3b75a618c2125b (diff)
use envvar instead of option to avoid catalogue update of every file with tlpkg-ctan-check --check; bump bad-mirror threshold to 36 hours
git-svn-id: svn://tug.org/texlive/trunk@54909 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-update-ctan-mirrors')
-rwxr-xr-xMaster/tlpkg/bin/tl-update-ctan-mirrors2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-ctan-mirrors b/Master/tlpkg/bin/tl-update-ctan-mirrors
index d7b7cfcea34..005e8fe3755 100755
--- a/Master/tlpkg/bin/tl-update-ctan-mirrors
+++ b/Master/tlpkg/bin/tl-update-ctan-mirrors
@@ -59,7 +59,7 @@ sub read_mstate {
} else {
# mirrors can be stale and yet not have no_time for their status.
my $age_hours = (time() - $age) / (60 * 60);
- if ($age_hours > 24) {
+ if ($age_hours > 36) {
printf STDERR "mirror age %.1f hours, skipping: $m\n", $age_hours
if $verbose;
} else {