package-zip-archives: print current step

This commit is contained in:
Andrej730
2026-08-26 12:07:28 +05:00
parent be05a04c9e
commit feba4cedb6
+3
View File
@@ -196,6 +196,7 @@ def package_python_wrapper(
output_dir: Path, output_dir: Path,
arch_suffix: str, arch_suffix: str,
) -> None: ) -> None:
print(f"Packaging python wrapper '{py_dir.name}'")
py_version = py_dir.name py_version = py_dir.name
postfix = "" if py_version[-1].isdigit() else py_version[-1] postfix = "" if py_version[-1].isdigit() else py_version[-1]
# Match and convert `x.y` -> `xy`. # Match and convert `x.y` -> `xy`.
@@ -242,6 +243,7 @@ def package_executable(
arch_suffix: str, arch_suffix: str,
) -> None: ) -> None:
exe = exe_path.name exe = exe_path.name
print(f"Packaging executable '{exe}'")
package_dir = ifcopenshell_install_dir / f".package-{exe}" package_dir = ifcopenshell_install_dir / f".package-{exe}"
package_dir.mkdir(parents=True) package_dir.mkdir(parents=True)
@@ -284,6 +286,7 @@ def package_app_bundle(
is the connector. is the connector.
""" """
app = app_path.stem app = app_path.stem
print(f"Packaging app bundle '{app}'")
if app == "BonsaiViewer": if app == "BonsaiViewer":
# ConnectorDiscovery looks in applicationDirPath()/connectors, # ConnectorDiscovery looks in applicationDirPath()/connectors,