From 8f44a292c8c72941acd7b34246caa7d85880602a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 29 Jan 2024 09:38:32 -0600 Subject: testing go Signed-off-by: Jeff Carr --- listWindow.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'listWindow.go') diff --git a/listWindow.go b/listWindow.go index bc2f5d9..876aab0 100644 --- a/listWindow.go +++ b/listWindow.go @@ -29,13 +29,13 @@ type section struct { name string hidden bool - parent *gui.Node - box *gui.Node - group *gui.Node - grid *gui.Node // where the repos are listed - hideCB *gui.Node + parent *gui.Node + box *gui.Node + group *gui.Node + grid *gui.Node // where the repos are listed + hideCB *gui.Node downloadAllB *gui.Node - witRepos []*witRepo + witRepos []*witRepo } func listWindow() { @@ -91,13 +91,13 @@ func downloadRepo(path string) bool { os.Setenv("GO111MODULE", "off") goSrcDir := me.goSrcPwd.String() - if ! quickCmd(goSrcDir, []string{"go", "get", "-v", path}) { + if !quickCmd(goSrcDir, []string{"go", "get", "-v", path}) { log.Info("go get failed") return false } fullpath := filepath.Join(goSrcDir, path) - if ! quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."}) { + if !quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."}) { log.Info("go get depends failed") return false } -- cgit v1.2.3