summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2015-04-21 23:35:33 +0000
committerNorbert Preining <preining@logic.at>2015-04-21 23:35:33 +0000
commit50db61194546ce5d4faebe47e12b7ed0a0e545fc (patch)
tree4c72640965d142617fc4dd4174b38252f16d2548 /Master
parent0a00e67952b9a6faec14cc2a671b8f6733e9fd50 (diff)
fix unknown action problems temporary be removing early check code
git-svn-id: svn://tug.org/texlive/trunk@36985 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl8
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl
index c27fd68c572..9e97b620a67 100755
--- a/Master/texmf-dist/scripts/texlive/tlmgr.pl
+++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl
@@ -279,9 +279,11 @@ sub main {
exit 0;
}
- if (defined($action) && $action && !exists $actionoptions{$action}) {
- die "$prg: unknown action: $action; try --help if you need it.\n";
- }
+ # we cannot warn now, as we do some action massaging down there
+ # to get this real needs some more work
+ # if (defined($action) && $action && !exists $actionoptions{$action}) {
+ # die "$prg: unknown action: $action; try --help if you need it.\n";
+ # }
if ((!defined($action) || !$action) && !$opts{"help"} && !$opts{"h"}) {
die "$prg: missing action; try --help if you need it.\n";