diff options
author | Norbert Preining <preining@logic.at> | 2009-01-08 14:40:04 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-01-08 14:40:04 +0000 |
commit | e28fb0d2cd35509c5c20ac7ac95b6fb9228b6f65 (patch) | |
tree | 71519d160b6870bb754a4feb29443ffb44633a83 | |
parent | 760eea56272a69965549e35be5de37885d63ddd1 (diff) |
hopefully tlmgr2 --help works again
git-svn-id: svn://tug.org/texlive/trunk@11826 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr2.pl b/Master/texmf/scripts/texlive/tlmgr2.pl index 02b1b73e9da..7833ab99286 100755 --- a/Master/texmf/scripts/texlive/tlmgr2.pl +++ b/Master/texmf/scripts/texlive/tlmgr2.pl @@ -190,7 +190,7 @@ if (defined($action) && ($action =~ m/^help/i)) { $opts{"help"} = 1; } -if (!defined($action) || !$action) { +if ((!defined($action) || !$action) && !$opts{"help"}) { die "$0: missing action; try --help if you need it.\n"; } |