Skip to content

Commit

Permalink
update error prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccann committed Nov 30, 2018
1 parent c63d25f commit 9772e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ func main() {
if *licensef != "" {
d, err := ioutil.ReadFile(*licensef)
if err != nil {
log.Printf("template error: %s", err)
log.Printf("license file: %s", err)
os.Exit(1)
}
t, err = template.New("").Parse(string(d))
if err != nil {
log.Printf("template error: %s", err)
log.Printf("license file: %s", err)
os.Exit(1)
}
} else {
Expand Down

0 comments on commit 9772e39

Please sign in to comment.