diff options
| author | Jeff Carr <[email protected]> | 2024-12-02 07:00:28 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-02 07:00:28 -0600 |
| commit | 1c8815685b1a12e6d9856ef90b6c8d7f243c0744 (patch) | |
| tree | 465d2e53339b7c96c7c5c1b259e4aae9af21e101 /globalDisplayOptions.go | |
| parent | cfb4fb61bfab6e6816c0080b47d6a6d4b935cea2 (diff) | |
continue to migrate to protobuf package
Diffstat (limited to 'globalDisplayOptions.go')
| -rw-r--r-- | globalDisplayOptions.go | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/globalDisplayOptions.go b/globalDisplayOptions.go index ed26177..19d366c 100644 --- a/globalDisplayOptions.go +++ b/globalDisplayOptions.go @@ -1,8 +1,6 @@ package main import ( - "os" - "go.wit.com/gui" "go.wit.com/lib/debugger" "go.wit.com/lib/gui/logsettings" @@ -43,50 +41,3 @@ func globalDisplayOptions(box *gui.Node) { debugger.DebugWindow() }) } - -func makePrepareRelease() { - me.Disable() - me.release.box.Disable() - defer me.Enable() - loop := me.repos.View.ReposSortByName() - for loop.Scan() { - repo := loop.Repo() - // check if the package dependancies changed, if so, re-publish - check := me.forge.Repos.FindByGoPath(repo.GoPath()) - if check == nil { - log.Info("boo, you didn't git clone", repo.GoPath()) - os.Exit(-1) - } - match, err := me.forge.Repos.GoDepsChanged(check) - if err != nil { - log.Info("dependancy checks failed", check.GetGoPath(), err) - repo.Status.IncrementRevisionVersion("missing prior published godeps") - continue - } - if match { - log.Printf("dependancy checks indicate a new release is needed for %s\n", check.GetGoPath()) - repo.Status.IncrementRevisionVersion("godeps changed") - continue - } else { - log.Printf("dependancies have not changed for %s\n", check.GetGoPath()) - } - - // see if there is a new version - master := repo.Status.GetMasterVersion() - lastTag := repo.Status.LastTag() - if master == lastTag { - repo.Status.SetTargetVersion(master) - } else { - repo.Status.IncrementRevisionVersion("Nov 2024 test") - } - } - findNext() - if setAllBranchesToMaster() { - // if it succeeds, disable this button - me.setBranchesToMasterB.Disable() - me.release.box.Enable() - me.repos.View.PrintReleaseReport("", "") - } else { - log.Info("setAllBranchesToMaster() failed") - } -} |
