diff options
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index e4063f09575..799a8edabf6 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1727,8 +1727,8 @@ sub write_w32_updater { my $repo = $mediatlpdb->root . "/$Archive"; TeXLive::TLUtils::mkdirhier($temp); tlwarn("Backup option not implemented for infrastructure update.\n") if ($opts{"backup"}); - if ($media eq 'DVD') { - tlwarn("Creating updater from DVD currently not implemented!\n"); + if ($media eq 'local_uncompressed') { + tlwarn("Creating updater from local_uncompressed currently not implemented!\n"); tlwarn("But it should not be necessary!\n"); return 1; # abort } @@ -1760,7 +1760,7 @@ sub write_w32_updater { return 1; # backup failed? abort } foreach my $pkg_part (@pkg_parts) { - if ($media eq 'CD') { + if ($media eq 'local_compressed') { copy("$repo/$pkg_part.tar.xz", "$temp"); } else { # net TeXLive::TLUtils::download_file("$repo/$pkg_part.tar.xz", "$temp/$pkg_part.tar.xz"); |