diff options
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 039558c5fce..8a4ac94017d 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -332,7 +332,9 @@ $vars{'from_dvd'} = $opt_from_dvd; setup_programs ("$::installerdir/tlpkg/installer", "$::_platform_"); $opt_url =~ s,/(tlpkg)?/*$,, if $opt_url; # remove any trailing tlpkg or / $TeXLiveURL = $opt_url || TeXLive::TLUtils::give_ctan_mirror(); -info("Using URL $TeXLiveURL\n") if media() eq "NET"; +if (media() eq "NET") { + info("Using URL $TeXLiveURL\n"); +} load_tlpdb(); log("Installer revision: $::installerrevision\n"); @@ -1184,6 +1186,10 @@ sub check_on_lang_collection_installed { foreach my $c (@collections_lang) { return 1 if $vars{"$c"}; } + if ($vars{"selected_scheme"} eq "scheme-context") { + # context + return 1; + } return 0; } |