Skip to content

Commit

Permalink
Ignore: Change variable names for pride and glory
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanilves committed Oct 19, 2017
1 parent 97c2877 commit 85a18b8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,12 +210,12 @@ func main() {
}(tc, done)
}

pullNumber := 0
p := 0
if pullCount > 0 {
for range done {
pullNumber++
p++

if pullNumber >= pullCount {
if p >= pullCount {
close(done)
}
}
Expand Down Expand Up @@ -250,12 +250,12 @@ func main() {
}(tc, o.PushRegistry, o.PushPrefix, done)
}

pushNumber := 0
p := 0
if pushCount > 0 {
for range done {
pushNumber++
p++

if pushNumber >= pushCount {
if p >= pushCount {
close(done)
}
}
Expand Down

0 comments on commit 85a18b8

Please sign in to comment.