diff options
| author | Jeff Carr <[email protected]> | 2024-02-01 13:30:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-01 13:30:26 -0600 |
| commit | 41a61668908536a860dc78de0c9eedbfc179dd63 (patch) | |
| tree | 11130ce0fccdfebd85089789dbea03d104592425 /globalDisplayOptions.go | |
| parent | 37e1e5a37acf76f4766cfba2ffbe70779852a564 (diff) | |
add version number exception for widget
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'globalDisplayOptions.go')
| -rw-r--r-- | globalDisplayOptions.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/globalDisplayOptions.go b/globalDisplayOptions.go index e0506a1..c561521 100644 --- a/globalDisplayOptions.go +++ b/globalDisplayOptions.go @@ -100,8 +100,15 @@ func globalDisplayOptions(box *gui.Node) { if whitelist(repo.String()) { continue } - repo.status.MakeRedomod() + if repo.status.MakeRedomod() { + log.Info("redo go.sum failed on", repo.String()) + me.Enable() + longB.Enable() + longB.SetLabel("FAILED") + return + } } + log.Info("redo go.sum finished ok!") me.Enable() longB.Enable() }) |
