diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 15:36:54 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 15:36:54 -0600 |
| commit | 9e297f46037c285ff73dd01862f42f1a70a4725a (patch) | |
| tree | 96e7c34c15e663709056c7a568d3689c70e6dc1b /prepareRelease.go | |
| parent | db2296b5b4aa6970deabebb3a8cc867c43dc8898 (diff) | |
attempt to save pb and reload it
Diffstat (limited to 'prepareRelease.go')
| -rw-r--r-- | prepareRelease.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/prepareRelease.go b/prepareRelease.go index e12a67c..043597b 100644 --- a/prepareRelease.go +++ b/prepareRelease.go @@ -19,15 +19,13 @@ func makePrepareRelease() { log.Info("setAllBranchesToMaster() failed") } - // reset all the target versions back to the current version - // incase they were saved in the repos.pb file + // blank all the target versions incase they were saved in the config .pb file all := me.forge.Repos.SortByFullPath() for all.Scan() { check := all.Next() // set the target version to the current master version - curver := check.GetMasterVersion() - check.SetTargetVersion(curver) + check.SetTargetVersion("") } all = me.forge.Repos.SortByFullPath() |
