diff options
author | Karl Berry <karl@freefriends.org> | 2018-05-01 18:23:17 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-05-01 18:23:17 +0000 |
commit | 4ff2e84760d2408bc24aea7e1216b38cd9a85aac (patch) | |
tree | 27c06231b2e97abeb2f350349a1241d6dcefc7ec | |
parent | 46236ab5f06a36d5b8429802e01602f9729e360b (diff) |
(_get_matching_files): pattern pattern typo
git-svn-id: svn://tug.org/texlive/trunk@47555 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLTREE.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm index 25b9290d003..09599571ac1 100644 --- a/Master/tlpkg/TeXLive/TLTREE.pm +++ b/Master/tlpkg/TeXLive/TLTREE.pm @@ -349,7 +349,7 @@ sub _get_matching_files { } elsif ($pattype eq "d") { @matchfiles = $self->files_under_path($patdata); } else { - die "Unknown pattern pattern type `$pattype' in $p"; + die "Unknown pattern type `$pattype' in $p"; } ddebug("p=$p; matchfiles=@matchfiles\n"); return @matchfiles; |