diff options
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl | 10 | ||||
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl | 4 |
2 files changed, 8 insertions, 6 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl index 90f30000aa4..aae8165c6d3 100755 --- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl +++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl @@ -1,12 +1,12 @@ #!/usr/bin/env perl -# $Id: tlmgr.pl 49997 2019-02-10 23:50:35Z karl $ +# $Id: tlmgr.pl 50333 2019-03-11 01:55:52Z preining $ # # Copyright 2008-2019 Norbert Preining # This file is licensed under the GNU General Public License version 2 # or any later version. -my $svnrev = '$Revision: 49997 $'; -my $datrev = '$Date: 2019-02-11 00:50:35 +0100 (Mon, 11 Feb 2019) $'; +my $svnrev = '$Revision: 50333 $'; +my $datrev = '$Date: 2019-03-11 02:55:52 +0100 (Mon, 11 Mar 2019) $'; my $tlmgrrevision; my $tlmgrversion; my $prg; @@ -3518,6 +3518,8 @@ sub action_update { if (!win32() && $restart_tlmgr && !$opts{"dry-run"} && !$opts{"list"}) { info ("Restarting tlmgr to complete update ...\n"); debug("restarting tlmgr @::SAVEDARGV\n"); + # cleanup temp files before re-exec-ing tlmgr + File::Temp::cleanup(); exec("tlmgr", @::SAVEDARGV); # we need warn here, otherwise perl gives warnings! warn ("$prg: cannot restart tlmgr, please retry update\n"); @@ -9761,7 +9763,7 @@ This script and its documentation were written for the TeX Live distribution (L<https://tug.org/texlive>) and both are licensed under the GNU General Public License Version 2 or later. -$Id: tlmgr.pl 49997 2019-02-10 23:50:35Z karl $ +$Id: tlmgr.pl 50333 2019-03-11 01:55:52Z preining $ =cut # test HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html diff --git a/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl b/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl index 8855a691837..18b4de2aac0 100755 --- a/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl +++ b/Build/source/texk/texlive/linked_scripts/tlshell/tlshell.tcl @@ -1660,7 +1660,7 @@ proc update_pkgs {sel_opt {pk ""}} { } if {[llength $deps] > 0} { set ans [any_message \ - [__ "Updating hard dependencies %s anyway. Continue?" $deps] \ + [__ "Updating some dependencies %s anyway. Continue?" $deps] \ "okcancel"] if {$ans eq "cancel"} return } @@ -1726,7 +1726,7 @@ proc remove_pkgs {sel_opt {pk ""}} { } if {[llength $deps] > 0} { set ans [any_message \ - [__ "Removing hard dependencies %s anyway. Continue?" $deps] \ + [__ "Removing some dependencies %s anyway. Continue?" $deps] \ "okcancel"] if {$ans eq "cancel"} return } |