more on release management
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
dbf10cddf7
commit
4d665387fe
|
@ -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)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue