mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-11 22:31:55 +00:00
package-zip-archives: print current step
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user