diff options
author | Norbert Preining <preining@logic.at> | 2021-05-06 14:15:27 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2021-05-06 14:15:27 +0000 |
commit | 07f1e7b2d63f5bb00342c49233a469431e0326ea (patch) | |
tree | abc2b97e93c93606d53d2d2a8aa100fe74eea9d9 /Master | |
parent | 6d15f4fc4f3400a99129f915215d961e369b30dc (diff) |
TLUtils: fix file:// URI scheme - thanks to Vincenzo Mantova
git-svn-id: svn://tug.org/texlive/trunk@59095 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index eafc24ff8aa..35426399ed9 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -2750,7 +2750,7 @@ sub download_file { return \*RETFH; } else { if (-r $filetoopen) { - copy ($filetoopen, $par); + copy ("-f", $filetoopen, $dest); return 1; } return 0; |