summaryrefslogtreecommitdiff
path: root/patch.Make.go
diff options
context:
space:
mode:
Diffstat (limited to 'patch.Make.go')
-rw-r--r--patch.Make.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/patch.Make.go b/patch.Make.go
index c2d1619..a71dff2 100644
--- a/patch.Make.go
+++ b/patch.Make.go
@@ -16,9 +16,9 @@ func (f *Forge) MakeDevelPatchSet() (*Patchs, error) {
}
defer os.RemoveAll(dir) // clean up
- loop := f.Repos.SortByGoPath()
- for loop.Scan() {
- repo := loop.Next()
+ all := f.Repos.SortByGoPath()
+ for all.Scan() {
+ repo := all.Next()
userb := repo.GetUserBranchName()
develb := repo.GetDevelBranchName()
@@ -47,9 +47,9 @@ func (f *Forge) MakePatchSet() (*Patchs, error) {
}
defer os.RemoveAll(dir) // clean up
- loop := f.Repos.SortByGoPath()
- for loop.Scan() {
- repo := loop.Next()
+ all := f.Repos.SortByGoPath()
+ for all.Scan() {
+ repo := all.Next()
userb := repo.GetUserBranchName()
develb := repo.GetDevelBranchName()