Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit 43be7e0

Browse files
authored
Run gofmt -s. (#595)
1 parent 8b303d7 commit 43be7e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/bootkube/bootstrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func (b *bootstrapControlPlane) Teardown() error {
6161
// copyFile copies a single file from src to dst. Returns an error if overwrite is true and dst
6262
// exists, or if any I/O error occurs during copying.
6363
func copyFile(src, dst string, overwrite bool) error {
64-
flags := os.O_CREATE|os.O_WRONLY
64+
flags := os.O_CREATE | os.O_WRONLY
6565
if !overwrite {
6666
flags |= os.O_EXCL
6767
}

0 commit comments

Comments
 (0)