diff options
Diffstat (limited to 'doExamine.go')
| -rw-r--r-- | doExamine.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doExamine.go b/doExamine.go index 8cac9d8..8a4ca75 100644 --- a/doExamine.go +++ b/doExamine.go @@ -12,7 +12,7 @@ import ( "go.wit.com/log" ) -func doExamine() bool { +func doExamine() error { me.found = new(gitpb.Repos) all := me.forge.Repos.SortByFullPath() for all.Scan() { @@ -28,7 +28,7 @@ func doExamine() bool { } } if len(me.found.Repos) == 0 { - return true + return nil } // slices.Reverse(me.found.Repos) slices.SortFunc(me.found.Repos, func(a, b *gitpb.Repo) int { @@ -63,7 +63,7 @@ func doExamine() bool { me.found.AppendByGoPath(repo) } me.forge.PrintHumanTableDirty(me.found) - return false + return nil } func isNormal(repo *gitpb.Repo) bool { |
