diff --git a/build_branches.py b/build_branches.py index 4a10c5d1..d4b7920a 100755 --- a/build_branches.py +++ b/build_branches.py @@ -90,8 +90,9 @@ def update_pr_description(pr_number:str): print(f"Updated PR description: {new_pr_description}") command = ["gh", "pr", "edit", pr_number, "--body", new_pr_description] print(f"Executing command: {str(command)}") - execution_cmd = subprocess.run(command, capture_output=True, text=True).stdout.strip() - print(f"Command Result: {execution_cmd}") + execution_cmd = subprocess.run(command, capture_output=True, text=True) + print(f"stdout: {execution_cmd.stdout}") + print(f"stderr: {execution_cmd.stderr}") def process_branch_folders():