more on release management

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-31 04:07:49 -06:00
parent dbf10cddf7
commit 4d665387fe
2 changed files with 2 additions and 5 deletions

View File

@ -341,7 +341,7 @@ func (rs *RepoStatus) CheckSafeGoSumRemake() (bool, []string) {
} else {
goSumS := deprs.goSumStatus.String()
log.Log(WARN, " FOUND", deprs.String(), goSumS)
username := deprs.userWorkingName.String()
username := deprs.mainWorkingName.String()
userhash, _ := deprs.gitConfig.hashes[username]
userversion, _ := deprs.gitConfig.versions[userhash]
log.Log(WARN, " username :"+username, userhash)
@ -414,7 +414,7 @@ func (rs *RepoStatus) CheckGoSum() (bool, string) {
log.Log(WARN, " SKIPPING Read Only", deprs.String())
} else {
log.Log(WARN, " FOUND", deprs.String(), deprs.goSumStatus.String())
username := deprs.userWorkingName.String()
username := deprs.mainWorkingName.String()
userhash, _ := deprs.gitConfig.hashes[username]
userversion, _ := deprs.gitConfig.versions[userhash]
log.Log(WARN, " username :"+username, userhash)

View File

@ -138,10 +138,7 @@ func (rs *RepoStatus) UpdateCurrent() {
return
}
log.Log(INFO, "Update() START")
// do things that are safe even if the git tree is dirty
// rs.path.SetValue(rs.repopath)
rs.getCurrentBranchName()
// rs.window.SetTitle(rs.repopath + " GO repo Details")
rs.getCurrentBranchVersion()
rs.getLastTagVersion()
rs.populateTags()