Fix bug with empty branch names in branch name list

754e1bea04a9e9c93b9943f9d6ebe4fe4b02c6e6

Tucker McKnight | Tue Jan 20 2026

Fix bug with empty branch names in branch name list

(Somehow didn't add this to the previous commit.)
src/repos.ts:23
Before
23
  const allBranches = (await exec(`git -C ${repoConfig.location} branch --format="%(refname:short)"`)).stdout.split("\n")
After
23
  const allBranches = (await exec(`git -C ${repoConfig.location} branch --format="%(refname:short)"`)).stdout.split("\n").filter(branch => branch !== '')