diff options
Diffstat (limited to 'Master/tlpkg/TeXLive/TLDownload.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLDownload.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLDownload.pm b/Master/tlpkg/TeXLive/TLDownload.pm index 64a9a3e5b7d..2ae1ebe5102 100644 --- a/Master/tlpkg/TeXLive/TLDownload.pm +++ b/Master/tlpkg/TeXLive/TLDownload.pm @@ -120,8 +120,7 @@ sub get_file { my $realout = $out; my ($outfh, $outfn); if ($out eq "|") { - ($outfh, $outfn) = tempfile(); - eval "END { unlink(\"$outfn\") if (-r \"$outfn\") ; }"; + ($outfh, $outfn) = tempfile(UNLINK => 1); $realout = $outfn; } my $response = $self->{'ua'}->get($url, ':content_file' => $realout); |