From 9fccec3f94495effb3261723c55f41acd31375c2 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Sat, 24 Nov 2018 14:59:04 +0000 Subject: If a pkgIndex file is encountered which produces an error, continue. This shoud fix the Travis build for 9.0 (But same fix should be in 8.7 as well) --- library/package.tcl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/library/package.tcl b/library/package.tcl index c72fbfb..974cbf0 100644 --- a/library/package.tcl +++ b/library/package.tcl @@ -493,7 +493,8 @@ proc tclPkgUnknown {name args} { # $file was not readable; silently ignore continue } on error msg { - tclLog "error reading package index file $file: $msg" + # $file is not usable; silently ignore + continue } on ok {} { set procdDirs($dir) 1 } @@ -511,7 +512,8 @@ proc tclPkgUnknown {name args} { # $file was not readable; silently ignore continue } on error msg { - tclLog "error reading package index file $file: $msg" + # $file is not usable; silently ignore + continue } on ok {} { set procdDirs($dir) 1 } @@ -595,7 +597,8 @@ proc tcl::MacOSXPkgUnknown {original name args} { # $file was not readable; silently ignore continue } on error msg { - tclLog "error reading package index file $file: $msg" + # $file is not usable; silently ignore + continue } on ok {} { set procdDirs($dir) 1 } -- cgit v0.12