From 1acbc89b0c9c8ea75405508a3eaf4d93d2890763 Mon Sep 17 00:00:00 2001 From: Robert Hilbrich Date: Wed, 29 Jan 2025 23:39:55 +0100 Subject: [PATCH] minor, refs #15213 --- tools/build_config/buildMacOSInstaller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/build_config/buildMacOSInstaller.py b/tools/build_config/buildMacOSInstaller.py index 4e19bc42cef..836d2955420 100755 --- a/tools/build_config/buildMacOSInstaller.py +++ b/tools/build_config/buildMacOSInstaller.py @@ -209,6 +209,7 @@ def create_framework_pkg(name, pkg_id, version, framework_dir, framework_pkg_dir f"/Library/Frameworks/{name}.framework", f"{pkg_path}", ] + print(f" - Using the call {pkg_build_command}") print(f" - Calling pkgbuild to create \"{pkg_path}\"") subprocess.run(pkg_build_command, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) pkg_size = os.path.getsize(pkg_path)