summaryrefslogtreecommitdiff
path: root/gitConfig.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-24 01:57:01 -0600
committerJeff Carr <[email protected]>2024-01-24 01:57:01 -0600
commit3c3dc5309a9b7b0c16de81333c569674c6c26ee8 (patch)
tree23a58c6014737d1a8e7aa8aa198d2c9a8af05e66 /gitConfig.go
parent7c82f918aa8da546f038ed5cf4c682f5787a191f (diff)
release automation
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gitConfig.go')
-rw-r--r--gitConfig.go12
1 files changed, 4 insertions, 8 deletions
diff --git a/gitConfig.go b/gitConfig.go
index cccad74..f829c61 100644
--- a/gitConfig.go
+++ b/gitConfig.go
@@ -298,15 +298,11 @@ func (rs *RepoStatus) CheckGoSum() bool {
return false
}
log.Log(WARN, " FOUND", newrs.String())
- /*
- for branch, _ := range rs.gitConfig.branches {
- log.Log(WARN, " ", branch)
- }
- */
- userhash, _ := newrs.gitConfig.hashes["jcarr"]
+ username := newrs.userWorkingName.String()
+ userhash, _ := newrs.gitConfig.hashes[username]
userversion, _ := newrs.gitConfig.versions[userhash]
- log.Log(WARN, " jcarr", userhash)
- log.Log(WARN, " jcarr", userversion)
+ log.Log(WARN, " username :" + username, userhash)
+ log.Log(WARN, " username :" + username, userversion)
if version == userversion {
log.Log(WARN, " USER VERSIONS MATCH", version, userversion)
} else {