diff options
author | Norbert Preining <preining@logic.at> | 2012-04-18 05:54:24 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2012-04-18 05:54:24 +0000 |
commit | cd9b11aecae06ce77ba0f1f325510ea4aac62a3e (patch) | |
tree | ffceeb9bd7b96247f2b1f81896088e83dec2a10d | |
parent | daf940e73bfb285cff687af16fe63e0fffc47b20 (diff) |
make sure we are using "schemes" and "collections" as special arguments,
as always documented.
git-svn-id: svn://tug.org/texlive/trunk@26026 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index b1ea48b0c69..d5ddab04825 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -1163,7 +1163,7 @@ sub action_info { # tlmgr info scheme # these commands just list the packages/collections/schemes installed with # a short list - if (!defined($what) || ($what =~ m/^(collection|scheme)$/i)) { + if (!defined($what) || ($what =~ m/^(collections|schemes)$/i)) { show_list_of_packages($what); return; } @@ -3399,9 +3399,9 @@ sub show_list_of_packages { $tlm = $remotetlpdb; } my @whattolist; - if ($what =~ m/^collection/i) { + if ($what =~ m/^collections/i) { @whattolist = $tlm->collections; - } elsif ($what =~ m/^scheme/i) { + } elsif ($what =~ m/^schemes/i) { @whattolist = $tlm->schemes; } else { if ($tlm->is_virtual) { |