File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,8 @@ def install(self, package_info: TCMKPackageInfos) -> None:
138138 package_name = self .package_name (edition , version )
139139 build_system_path = self ._build_system_package_path (version , package_name )
140140 packages_dir = Path (__file__ ).parent .parent .parent / "package_download"
141+ logger .info ("Check for %s/%s" , packages_dir , package_name )
142+
141143 if (package_path := packages_dir / package_name ).exists ():
142144 logger .info ("Install from locally available package %s" , package_path )
143145 self ._write_package_hash (version , edition , package_path )
@@ -150,6 +152,9 @@ def install(self, package_info: TCMKPackageInfos) -> None:
150152
151153 else :
152154 # Install from tstbuild or portal
155+ logger .info (
156+ "No matching package found, install from tstbuild or portal (%s)" , package_info
157+ )
153158 package_path = self .download (package_info )
154159 self ._write_package_hash (version , edition , package_path )
155160 self ._install_package (package_path )
You can’t perform that action at this time.
0 commit comments