diff options
Diffstat (limited to 'releaseBox.go')
| -rw-r--r-- | releaseBox.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/releaseBox.go b/releaseBox.go index 27581b5..1d5fcf9 100644 --- a/releaseBox.go +++ b/releaseBox.go @@ -325,7 +325,7 @@ func scanForReady() bool { if whitelist(repo.GoPath()) { log.Info("found WHITELIST", repo.GoPath()) - repo.Status.SetGoSumStatus("WHITELIST") + repo.SetGoState("WHITELIST") continue } @@ -341,7 +341,7 @@ func scanForReady() bool { // todo: redo this logic as it is terrible func findNextDirty(onlyKind string) bool { for _, repo := range me.repos.View.AllRepos() { - goSumS := repo.Status.GetGoSumStatus() + goSumS := repo.GoState() // dirtyS := repo.State() log.Info("findNextDirty()", repo.GoPath(), goSumS) |
