summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-08 02:38:48 -0500
committerJeff Carr <[email protected]>2025-10-08 02:38:48 -0500
commitfdb9e3fc0bc61d488e4aa9ac059e4452095f2bc2 (patch)
treebe19f039bf0fbace2d4e2d4992af468b4378e414
parente994733c58d051cff8a0a05f219045199308db72 (diff)
-rw-r--r--Makefile2
-rw-r--r--doPull.go2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 87649fc..7a545b0 100644
--- a/Makefile
+++ b/Makefile
@@ -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:
diff --git a/doPull.go b/doPull.go
index 1ca8617..3d5666f 100644
--- a/doPull.go
+++ b/doPull.go
@@ -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
}