diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | doPull.go | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -11,6 +11,8 @@ default: install # This will re-generate ALL of the needed autogenerated .pb.go files generate: + go mod init + go mod tidy go generate vet: @@ -81,7 +81,7 @@ func doPull() error { count += 1 found.Append(me.forge.Repos.Repos[count]) } - found.SortFilename() + found.SortNamespace() me.forge.PrintPullTable(found) return nil } |
