diff options
| author | Jeff Carr <[email protected]> | 2024-01-23 15:21:20 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-23 15:21:20 -0600 |
| commit | 2b8d19099f4cf7b66b88b006dabfb61328082201 (patch) | |
| tree | 1b4836a946337dc8dd3dd515c75e57849474ff9f | |
| parent | 5804b5c53bfeaa26049b89b40d3030c70a4b95ac (diff) | |
Scan() everything options
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | globalBuildOptions.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/globalBuildOptions.go b/globalBuildOptions.go index 1d26a00..010021d 100644 --- a/globalBuildOptions.go +++ b/globalBuildOptions.go @@ -98,6 +98,14 @@ func globalBuildOptions(box *gui.Node) { me.autoDryRun = group2.NewCheckbox("autotypist --dry-run") me.autoDryRun.SetChecked(true) + group2.NewButton("parse go.sum ScanGitConfig()", func() { + repostatus.ScanGitConfig() + }) + + group2.NewButton("parse go.sum ScanGoSrc()", func() { + repostatus.ScanGoSrc() + }) + group2.NewButton("run git status", func() { me.autoWorkingPwd.SetValue("~/go/src") log.Warn("scanning allrepos") |
