diff options
| author | Jeff Carr <[email protected]> | 2024-11-13 18:10:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-13 18:10:53 -0600 |
| commit | fc4079aae3db90787a862a5b20187c657db64358 (patch) | |
| tree | 6f9be3ea3ffd3c33ca6a0ac5cb59e40d1bbc9313 /releaseBox.go | |
| parent | 76268a71bbfdfe27e70c1a225adc97251706797f (diff) | |
use whitelist in repostatus
Diffstat (limited to 'releaseBox.go')
| -rw-r--r-- | releaseBox.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/releaseBox.go b/releaseBox.go index 351717a..42143a5 100644 --- a/releaseBox.go +++ b/releaseBox.go @@ -122,11 +122,11 @@ func createReleaseBox(box *gui.Node) { group := me.release.box.NewGroup("Run on Current Repo") grid := group.NewGrid("buildOptions", 0, 0) - grid.NewButton("set to IGNORE", func() { + grid.NewButton("whitelist", func() { // tmp := me.current.GoState() log.Info("trying to whitelist repo", me.current.GoPath()) - // me.current.SetGoState("IGNORE") - me.release.whitelist[me.current.GoPath()] = me.current + me.current.Status.Whitelist = true + findNext() }) me.release.checkGoSumB = grid.NewButton("checkValidGoSum()", func() { |
