mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Add user-facing output for successful git push in arc run
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
34000505a9
commit
4155d4e5c5
1 changed files with 4 additions and 0 deletions
|
|
@ -1030,6 +1030,10 @@ pub async fn run_command(
|
|||
match result {
|
||||
Ok(Ok(Ok(()))) => {
|
||||
tracing::info!(run_branch, "Pushed run branch to origin");
|
||||
eprintln!(
|
||||
"{} {run_branch}",
|
||||
styles.bold.apply_to("Pushed branch:")
|
||||
);
|
||||
}
|
||||
Ok(Ok(Err(e))) => {
|
||||
tracing::warn!(error = %e, "Failed to push run branch");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue