Skip to content

Commit

Permalink
fix: complete the fix that fixes the fixing fix 😭😭😭
Browse files Browse the repository at this point in the history
I forgot to cover the case where a branch was checked out, ugh!
  • Loading branch information
ErichDonGubler committed Jun 14, 2024
1 parent 31d4c4d commit f8545fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn main() {
if base != current_branch {
cmd.arg(base);
}
cmd.arg(&current_branch)
cmd.arg(&current_branch).arg("--all")
})?
} else {
let mut branches = branches(&config, &|cmd| cmd.arg(base).arg("--all"))?;
Expand Down

0 comments on commit f8545fc

Please sign in to comment.