diff options
author | Norbert Preining <preining@logic.at> | 2018-05-23 02:41:17 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-05-23 02:41:17 +0000 |
commit | 0b56598a173bfece91dfff31d7f8e03b37500bf6 (patch) | |
tree | a0958aca78ca78a2cd0323d4f069bbebfc89e4df /Master/tlpkg/TeXLive | |
parent | 49f362930a1775f1f824acb9598ccd94c924bb09 (diff) |
more ssh fixes
git-svn-id: svn://tug.org/texlive/trunk@47813 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 1 | ||||
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index f766f176d69..e8a6ca878ac 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -1835,6 +1835,7 @@ sub not_virtual_install_package { } elsif (&media eq 'NET') { $container = "$root/$Archive/$pkg.$DefaultContainerExtension"; } + debug("TLPDB::not_virtual_install_package: trying to install $container\n"); $self->_install_data ($container, $reloc, \@installfiles, $totlpdb, $tlpobj->containersize, $tlpobj->containerchecksum) || return(0); # if we are installing from local_compressed or NET we have to fetch the respective diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index 0c4b30b95c0..d6c4a700677 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -2176,7 +2176,7 @@ sub unpack { $containerfile_quote = "\"$containerfile\""; $tarfile_quote = "\"$tarfile\""; $target_quote = "\"$target\""; - if ($what =~ m,^(https?|ftp)://,) { + if ($what =~ m,^(https?|ftp)://, || $what =~ m,^[^@]*@[^:]*:,) { # we are installing from the NET # check for the presence of $what in $tempdir if (-r $containerfile) { |