diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-19 06:40:08 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-19 06:40:08 +0000 |
commit | ce36e1304180e65dabde06d868dd09fc96b012e5 (patch) | |
tree | 99f486aa005f60b12533fc0e6e00a8cdbcda7353 /Master/tlpkg | |
parent | 298f60abe0882a11801a7d3ae85d9672ffbb2542 (diff) |
tlmgr.exe prevents tlmgr update --self
git-svn-id: svn://tug.org/texlive/trunk@14761 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index fba08bdd8e9..a75d67899fa 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -111,6 +111,7 @@ sub check_w32 closedir (DIR) || warn "closedir($DIR) failed: $!"; foreach my $f (@binfiles) { + next if ($f =~ /^tlmgr\.bat$/); # .exe would prevent tlmgr update --self! next unless ($f =~ s/\.(bat|cmd)$/\.exe/); # only if batch file $diff += system ("cmp $w32dir/$f $w32canonical"); } |