Skip to content

Commit be7a718

Browse files
committed
Fix error message
1 parent f7b8fc6 commit be7a718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/branch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ impl GithubClient {
374374
&& source.message.contains("Reference does not exist")
375375
{
376376
// Branch doesn't exist, so we can consider this a success
377-
eprintln!("Branch '{branch}' already exists, ignoring");
377+
eprintln!("Branch '{branch}' does not exist, ignoring");
378378
return Ok(());
379379
}
380380
eprintln!("❌ Failed to delete branch '{branch}' for {repo}: {e}");

0 commit comments

Comments
 (0)