diff options
| author | Jeff Carr <[email protected]> | 2024-01-31 02:27:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-31 02:27:17 -0600 |
| commit | a46c523a7a3a7202f0af97036ff39f01a1dffc2a (patch) | |
| tree | 7f2757bad4cb6bd7e152c892e6f54e56a9651023 /scan.go | |
| parent | 537af9573e7f919e62d8dce0a89c98d304a3032d (diff) | |
remove non-current branch info
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'scan.go')
| -rw-r--r-- | scan.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,6 +22,7 @@ func (r *repo) newScan() bool { log.Warn("repo does not exist", r.getPath()) return false } + /* mname := r.status.GetMasterBranchName() mver := r.status.GetMasterVersion() if mname != "guimaster" { @@ -42,6 +43,7 @@ func (r *repo) newScan() bool { uver = uver + " (" + uname + ")" } r.userVersion.SetLabel(uver) + */ cbname := r.status.GetCurrentBranchName() cbversion := r.status.GetCurrentBranchVersion() @@ -136,7 +138,7 @@ func scanGoSum() { if status == "PERFECT" { continue } else { - repo.status.Update() + repo.status.UpdateCurrent() repo.newScan() } |
