summaryrefslogtreecommitdiff
path: root/doFix.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-13 05:52:16 -0500
committerJeff Carr <[email protected]>2025-10-13 05:52:16 -0500
commit6e8c4dd5858b116b1c7eaac158ef8b54941b0ad4 (patch)
tree4080bedb4b3b3cba506e624231b274bdb14a1c86 /doFix.go
parentfe64b891eef673e4fd0e1041ebbc1ccc49963b21 (diff)
take out panic and loop through
Diffstat (limited to 'doFix.go')
-rw-r--r--doFix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doFix.go b/doFix.go
index dbe2f9b..d7b314e 100644
--- a/doFix.go
+++ b/doFix.go
@@ -59,7 +59,7 @@ func doFix() (string, error) {
log.Info("checking out with force", repo.FullPath)
repo.CheckoutForce()
repo.RunVerbose([]string{"git", "branch"})
- panic("did this work?")
+ // panic("did this work?") // yes, it does work. it still needs work. branch handling is wrong in gitpb
}
me.forge.Repos.Save()
}