From 8893af7740e7fa27fc5040242a4f805ea6aa163d Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 28 Nov 2024 21:03:23 -0600 Subject: testGui example seems to work --- testGui/Makefile | 3 +-- testGui/main.go | 13 +++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'testGui') diff --git a/testGui/Makefile b/testGui/Makefile index 24fc00d..74e3039 100644 --- a/testGui/Makefile +++ b/testGui/Makefile @@ -8,7 +8,6 @@ build: reset GO111MODULE=off go build \ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}" - ./testGui --no-gui --list vet: GO111MODULE=off go vet @@ -34,7 +33,7 @@ redomod: GO111MODULE= go mod init GO111MODULE= go mod tidy -list-packages: +list: ./testGui --no-gui --list pull: build diff --git a/testGui/main.go b/testGui/main.go index 4c55f66..e1a877e 100644 --- a/testGui/main.go +++ b/testGui/main.go @@ -22,12 +22,6 @@ func main() { me.forge = forgepb.Init() me.forge.ConfigPrintTable() - if err := me.forge.Machine.ConfigLoad(); err != nil { - log.Warn("zoopb.ConfigLoad() failed", err) - os.Exit(-1) - } - me.forge.Machine.InitWit() - // setup the GUI me.myGui = gui.New() me.myGui.Default() @@ -42,6 +36,13 @@ func main() { rloop := me.repoList.ReposSortByName() for rloop.Scan() { repo := rloop.Repo() + + repotype := repo.RepoType() + if repotype != "binary" { + // we only want to process golang binaries where package == 'main' + // log.Info("skipping repo", repo.GoPath(), repotype) + continue + } // var cmd []string var start string var end string -- cgit v1.2.3