Update internal/code-generator/main.go

Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
Luke Francl 2021-10-13 10:30:19 -07:00 committed by GitHub
parent 57c5940dbe
commit 03b31eb4ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ func main() {
for _, file := range fileList {
if err := file.generate(file.fileToParse, file.samplesDir, file.outPath, file.tmplPath, file.tmplName, file.commit); err != nil {
log.Printf("Error generating template %q to %q: %+v", file.tmplPath, file.outPath, err)
log.Printf("error generating template %q to %q: %+v", file.tmplPath, file.outPath, err)
}
}
}