Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit f8545fc

Browse files
fix: complete the fix that fixes the fixing fix 😭😭😭
I forgot to cover the case where a branch was checked out, ugh!
1 parent 31d4c4d commit f8545fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ fn main() {
175175
if base != current_branch {
176176
cmd.arg(base);
177177
}
178-
cmd.arg(&current_branch)
178+
cmd.arg(&current_branch).arg("--all")
179179
})?
180180
} else {
181181
let mut branches = branches(&config, &|cmd| cmd.arg(base).arg("--all"))?;

0 commit comments

Comments
 (0)