mirror of
https://github.com/ko-build/ko.git
synced 2025-11-06 09:19:12 +02:00
Some small nits around the codebase to make linters happy. (#181)
This commit is contained in:
@@ -28,12 +28,12 @@ func main() {
|
||||
if err != nil {
|
||||
log.Fatalf("Error reading %q: %v", file, err)
|
||||
}
|
||||
log.Printf(string(bytes))
|
||||
log.Print(string(bytes))
|
||||
|
||||
file = filepath.Join(dp, "refs/heads/master")
|
||||
bytes, err = ioutil.ReadFile(file)
|
||||
if err != nil {
|
||||
log.Fatalf("Error reading %q: %v", file, err)
|
||||
}
|
||||
log.Printf(string(bytes))
|
||||
log.Print(string(bytes))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user