summaryrefslogtreecommitdiff
path: root/releaseBox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-18 17:55:59 -0600
committerJeff Carr <[email protected]>2024-02-18 17:55:59 -0600
commita7619389df4fc214e52e3db7c8336514bdcc82b0 (patch)
tree9f6cbf2b2acbfc28327466bd143092207f70f3cd /releaseBox.go
parent08c7765cc70bae20479ad0aa1897b6a4cfc3613a (diff)
attempting to fix guireleaser
Diffstat (limited to 'releaseBox.go')
-rw-r--r--releaseBox.go4
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)