From 6dd325d5a516cb1a078db7d8d273b0b930bb2e49 Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Thu, 9 Jul 2026 14:52:21 +0200 Subject: [PATCH] chore: update ui service manager of new service --- cli/src/core/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/core/git.py b/cli/src/core/git.py index 71fefed..98df4df 100644 --- a/cli/src/core/git.py +++ b/cli/src/core/git.py @@ -65,7 +65,7 @@ def git_push_changes( logger.info("Staging area successfully reset to clean state.") error_reason = e.stderr.strip() if e.stderr else "Unknown remote error" - raise RuntimeError(f"Failed to push to git due to: {error_reason}") + raise RuntimeError(f"Failed to push to git due to: {error_reason}, {e.stdout}, {e.status}") logger.info("Successfully pushed!")