Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guzenok1 committed Jan 3, 2021
1 parent 932e472 commit 0209c7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions go-fuzz-build/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,9 @@ func (c *Context) copyDir(dir, newDir string) {
dst := filepath.Join(newDir, f.Name())
if f.IsDir() {
c.copyDir(src, dst)
continue
} else {
c.copyFile(src, dst)
}
c.copyFile(src, dst)
}
}

Expand All @@ -782,9 +782,9 @@ func (c *Context) copyNotPkgDir(dir, newDir string) {
dst := filepath.Join(newDir, f.Name())
if f.IsDir() {
c.copyNotPkgDir(src, dst)
continue
} else {
c.copyFile(src, dst)
}
c.copyFile(src, dst)
}
}

Expand Down

0 comments on commit 0209c7d

Please sign in to comment.