diff options
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/install-tl b/Master/install-tl index d7c43995ca5..92449bf7ed2 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1225,7 +1225,7 @@ sub calc_depends { sub load_tlpdb { my $master = $location; info("Loading $master/$TeXLive::TLConfig::InfraLocation/$TeXLive::TLConfig::DatabaseName\n"); - $tlpdb=TeXLive::TLPDB->new(root => "$master"); + $tlpdb = TeXLive::TLPDB->new(root => $master); if (!defined($tlpdb)) { my $do_die = 1; # if that failed, and: @@ -1234,19 +1234,19 @@ sub load_tlpdb { # then we simply add "/systems/texlive/tlnet" in case someone just # gave an arbitrary CTAN mirror address without the full path if ($media eq "NET" && $location !~ m/tlnet/) { - tlwarn("First attempt for net installation failed.\n"); - tlwarn("Repository url does not contain \"tlnet\",\n"); - tlwarn("retrying with \"/systems/texlive/tlnet\" appended.\n"); + tlwarn("First attempt for net installation failed;\n"); + tlwarn(" repository url does not contain \"tlnet\",\n"); + tlwarn(" retrying with \"/systems/texlive/tlnet\" appended.\n"); $location .= "/systems/texlive/tlnet"; $master = $location; # # since we change location, we reset the error count of the # download object - $::tldownload_server->enable if (defined($::tldownload_server)); + $::tldownload_server->enable if defined($::tldownload_server); # - $tlpdb=TeXLive::TLPDB->new(root => "$master"); + $tlpdb = TeXLive::TLPDB->new(root => $master); if (!defined($tlpdb)) { - tlwarn("Also that one did not help.\n"); + tlwarn("Oh well, adding tlnet did not help.\n"); tlwarn(<<END_EXPLICIT_MIRROR); You may want to try specifying an explicit or different CTAN mirror; |