diff options
author | 2025-01-14 12:10:12 -0800 | |
---|---|---|
committer | 2025-01-14 12:10:12 -0800 | |
commit | fb9171125f2aa80d2a1bad43f7956e8b32602c0c (patch) | |
tree | 32f43e6d835e4f4fb467c6580ef7844f6727a660 /ci/build_test_suites.py | |
parent | 2de155b2f6bba55187eb68b733dabe4c9655ec8d (diff) | |
parent | aa4ee4b76677364adb834e5fcac66055c52f40e4 (diff) |
Merge "Log the build command that we are executing" into main
Diffstat (limited to 'ci/build_test_suites.py')
-rw-r--r-- | ci/build_test_suites.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build_test_suites.py b/ci/build_test_suites.py index 0cae816732..d81248b496 100644 --- a/ci/build_test_suites.py +++ b/ci/build_test_suites.py @@ -298,7 +298,7 @@ def execute_build_plan(build_plan: BuildPlan): build_command.append(get_top().joinpath(SOONG_UI_EXE_REL_PATH)) build_command.append('--make-mode') build_command.extend(build_plan.build_targets) - + logging.info(f'Running build command: {build_command}') try: run_command(build_command) except subprocess.CalledProcessError as e: |