diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-04-12 16:07:27 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2008-04-12 16:07:27 +0000 |
commit | 6693c77b9ccf0efe805eaa3efb5c4efefc2ee348 (patch) | |
tree | c9c70eed36bc6c2980c51e2954e5d9611518197d | |
parent | 1198cc3f2c3b2756ec5f281aeb56711754c4b80a (diff) |
Typo in tlpkg-ctan-check breaking --list-not-treated
git-svn-id: svn://tug.org/texlive/trunk@7396 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index f7578bd881f..3dbaa344b11 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -225,7 +225,7 @@ sub main @AllTLP = $tlpdb->list_packages; my @nottreatedtlp=(); foreach my $b (@AllTLP) { - my @foo = grep(/^$b$/, @WorkingTPM); + my @foo = grep(/^$b$/, @WorkingTLP); if ($#foo < 0) { push @nottreatedtlp, $b ; } } print "List of tlps which are not in ctan-check:\n"; |