diff options
Diffstat (limited to 'Master/tlpkg/bin/tl-update-auto')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-auto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/tl-update-auto b/Master/tlpkg/bin/tl-update-auto index 78ba3b01f0c..793f63e4aef 100755 --- a/Master/tlpkg/bin/tl-update-auto +++ b/Master/tlpkg/bin/tl-update-auto @@ -13,7 +13,7 @@ chicken=echo chicken= # verbose=echo -#verbose=false +verbose=false # # Toward the end of a release, we may want to update config.{guess,sub} # but nothing else: @@ -242,9 +242,9 @@ fi fi # !config_scripts_only -# ctan mirror list from ctan. Also skip if even-numbered day, +# ctan mirror list from ctan. Also skip every other day, # just because daily seems a bit much. -if $config_scripts_only || test `expr $(date +%d) % 2` = 1; then :; else +if $config_scripts_only || test `expr $(date +%d) % 2` = 0; then :; else ctan_mirrors=$TMPDIR/mirrors # incoming data from CTAN ctan_mirmon=$TMPDIR/mirmon.state mirrors4tl=tlpkg/installer/ctan-mirrors.pl # massaged for TL |