diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-auto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index 7770ca9b5f4..5b070509a72 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -249,7 +249,10 @@ fi # !config_scripts_only # ctan mirror list from ctan. Skip every other day, # just because daily seems a bit much. -if $config_scripts_only || test `expr $(date +%d) % 2` = 0; then :; else +# || test `expr $(date +%d) % 2` = 0 +# But no, let's do it every day for a while until mirror list +# is more stable. +if $config_scripts_only; then :; else ctan_mirrors=$TMPDIR/mirrors # incoming data from CTAN ctan_mirmon=$TMPDIR/mirmon.state mirrors4tl=tlpkg/installer/ctan-mirrors.pl # massaged for TL |