diff options
Diffstat (limited to 'doRelease.go')
| -rw-r--r-- | doRelease.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doRelease.go b/doRelease.go index 2405a6e..9ebd377 100644 --- a/doRelease.go +++ b/doRelease.go @@ -117,10 +117,10 @@ func checkValidGoSum(repo *repolist.Repo) bool { // try to figure out if there is another package to update func doReleaseFindNext() bool { // scan for new repo - if findNextDirty("") { - log.Info("findNextDirty() found something") + if findNext() { + log.Info("findNext() found something") } else { - log.Info("findNextDirty() could not find anything") + log.Info("findNext() could not find anything") return false } if checkValidGoSum(me.current) { |
