summaryrefslogtreecommitdiff
path: root/findConfig.go
diff options
context:
space:
mode:
Diffstat (limited to 'findConfig.go')
-rw-r--r--findConfig.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/findConfig.go b/findConfig.go
index efe6ee2..3586bad 100644
--- a/findConfig.go
+++ b/findConfig.go
@@ -22,9 +22,9 @@ func findConfig() bool {
// finds config repos that are writable
func findConfigMine() {
- loop := me.forge.Config.SortByGoPath()
- for loop.Scan() {
- r := loop.Next()
+ all := me.forge.Config.SortByGoPath()
+ for all.Scan() {
+ r := all.Next()
gopath := r.GoPath
if r.GetDirectory() {
continue
@@ -39,9 +39,9 @@ func findConfigMine() {
// get everything in your config
func findConfigAll() {
- loop := me.forge.Config.SortByGoPath()
- for loop.Scan() {
- r := loop.Next()
+ all := me.forge.Config.SortByGoPath()
+ for all.Scan() {
+ r := all.Next()
gopath := r.GoPath
if r.GetDirectory() {
continue