From 92be907bce6fd28a1e49a54b318c2b44ffefaa2a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 25 Sep 2025 15:51:05 -0500 Subject: [PATCH] fix this odd case --- doNormal.go | 1 + 1 file changed, 1 insertion(+) diff --git a/doNormal.go b/doNormal.go index 9838d25..33cbcf6 100644 --- a/doNormal.go +++ b/doNormal.go @@ -39,6 +39,7 @@ func doNormal() bool { s := fmt.Sprintf("repair the %s branch on %s", bname, repo.FullPath) if fhelp.QuestionUser(s) { // todo, check to make sure we aren't on this branch + repo.RunVerbose([]string{"git", "checkout", repo.GetMasterBranchName()}) repo.RunVerbose([]string{"git", "branch", "-D", bname}) repo.RunVerbose([]string{"git", "checkout", bname}) }