1
0
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:
Markus Thömmes
2020-08-10 17:21:31 +02:00
committed by GitHub
parent 6e4a93eee0
commit ecce857be6
4 changed files with 7 additions and 7 deletions

View File

@@ -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))
}