diff options
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() |
