summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl6
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) {