Use new range syntax
This commit is contained in:
parent
19a89645a1
commit
5d12d934b8
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ func configFilesWatcher(
|
|||
|
||||
// wait for file to maybe get created again
|
||||
// see https://github.com/glanceapp/glance/pull/358
|
||||
for i := 0; i < 10; i++ {
|
||||
for range 10 {
|
||||
if _, err := os.Stat(event.Name); err == nil {
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue