diff options
| author | Jeff Carr <[email protected]> | 2024-12-05 17:39:45 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-05 17:39:45 -0600 |
| commit | 9acb73470bd26e88c4284e5557c947d018483b9c (patch) | |
| tree | 18909c3510948d136840a20943aa76953774d0e6 | |
| parent | 6b3dd9771387a4f7b2d12c1bc0f4bdd11fe0cc5d (diff) | |
closer to full automated runv0.22.33
| -rw-r--r-- | releaseBox.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/releaseBox.go b/releaseBox.go index ba46c2b..f276fa5 100644 --- a/releaseBox.go +++ b/releaseBox.go @@ -145,9 +145,15 @@ func createReleaseBox(box *gui.Node) { ok, duration := doReleaseAll() s := fmt.Sprint(duration) log.Info("release returned", ok, "and ran for", s, "findCounter =", findCounter) + first := findCounter if findCounter != 0 { log.Info("should try thsi doRelease() loop again since findCounter =", findCounter) + ok, duration := doReleaseAll() + s := fmt.Sprint(duration) + log.Info("release returned", ok, "and ran for", s, "findCounter =", findCounter) } + second := findCounter + log.Info("doReleaseAll() first =", first, "second =", second) buttonEnable() }) grid.NextRow() |
