summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2020-03-14 22:49:30 +0000
committerNorbert Preining <preining@logic.at>2020-03-14 22:49:30 +0000
commit4cc44d293078eff35fcd25b4cb6fe7aedc1a227b (patch)
tree50e549545519af5f16d1f2cac6981092ee6a90c2
parent21100a02fadf03c8a2a6ab7e04755a89cc6baea6 (diff)
fix tlmgr gui > uninstall TL tlmgr invocation
git-svn-id: svn://tug.org/texlive/trunk@54309 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgrgui.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgrgui.pl b/Master/texmf-dist/scripts/texlive/tlmgrgui.pl
index 27db96bb6fd..0c1aca64c50 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgrgui.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgrgui.pl
@@ -631,7 +631,7 @@ sub setup_menu_system {
-command => sub {
my $b = shift;
if ($b eq __("Ok")) {
- system("tlmgr", "uninstall", "--force");
+ system("tlmgr", "remove", "--all", "--force");
$mw->Dialog(-text => __("Complete removal finished"), -buttons => [ __("Ok") ])->Show;
$mw->destroy;
exit(0);