Skip to content

Commit

Permalink
Fix default template location in install
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jul 4, 2019
1 parent 348e65f commit 1ca8c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func install(app *App, qMap goyesql.Queries) {
}

// Default template.
tplBody, err := ioutil.ReadFile("templates/default.tpl")
tplBody, err := ioutil.ReadFile("email-templates/default.tpl")
if err != nil {
tplBody = []byte(tplTag)
}
Expand Down

0 comments on commit 1ca8c2f

Please sign in to comment.