From 9c1d050d8bc63f83b73d74b409ab9e40832b3a18 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Mar 2025 14:00:51 -0800 Subject: [PATCH] feat: Add git command output display in `check_push_access` function --- scripts/versionbump.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/versionbump.py b/scripts/versionbump.py index 4fb312c98..f626d166d 100755 --- a/scripts/versionbump.py +++ b/scripts/versionbump.py @@ -72,6 +72,8 @@ def check_push_access(): print(result.stderr) sys.exit(1) print("Push access to origin repository confirmed.") + print("Git output:") + print(result.stdout) def main():