From dfbc17a745fcd021276d76b33c7789f166158959 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 2 Dec 2024 14:35:39 +0100 Subject: [PATCH] Display commands of package creation --- packaging/MacOS/build_macos.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py index fc78abf76f..d3e1c1cfd9 100644 --- a/packaging/MacOS/build_macos.py +++ b/packaging/MacOS/build_macos.py @@ -56,6 +56,7 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v else: print("CODESIGN_IDENTITY missing. The installer is not being signed") + print(f"Run package build command [{" ".join(pkg_build_arguments)}]") subprocess.run(pkg_build_arguments) # This automatically generates a distribution.xml file that is used to build the installer. @@ -67,6 +68,7 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v "--package", Path(dist_path, component_filename), # Package that will be inside installer Path(dist_path, "distribution.xml"), # Output location for sythesized distributions file ] + print(f"Run distribution creation command [{" ".join(distribution_creation_arguments)}]") subprocess.run(distribution_creation_arguments) # This creates the distributable package (Installer) @@ -80,6 +82,7 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v if codesign_identity: installer_creation_arguments.extend(["--sign", codesign_identity]) + print(f"Run installer creation command [{" ".join(installer_creation_arguments)}]") subprocess.run(installer_creation_arguments)