summaryrefslogtreecommitdiff
path: root/goWork.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-11 19:31:37 -0600
committerJeff Carr <[email protected]>2024-12-11 19:31:37 -0600
commitdae2653975b6db822633430a97adbb21b52a99ff (patch)
tree40e9fe53f9149ef090fb7bd40d2c77709b7904c8 /goWork.go
parent0235d4d0961d71acd3b678dad009d68713bb6621 (diff)
use 'all' instead of 'loop'
Diffstat (limited to 'goWork.go')
-rw-r--r--goWork.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/goWork.go b/goWork.go
index afd56c9..afb09da 100644
--- a/goWork.go
+++ b/goWork.go
@@ -27,9 +27,9 @@ func (f *Forge) MakeGoWork() error {
fmt.Fprintln(workf, "")
fmt.Fprintln(workf, "use (")
- loop := f.Repos.SortByGoPath()
- for loop.Scan() {
- repo := loop.Next()
+ all := f.Repos.SortByGoPath()
+ for all.Scan() {
+ repo := all.Next()
/*
if !repo.IsGoLang() == "" {
// skip repos that aren't go