From 1ca8c2faf22bc159511abdb5bdabc3be588465fd Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Thu, 4 Jul 2019 14:33:03 +0530 Subject: [PATCH] Fix default template location in install --- install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.go b/install.go index 400ce24..e24483b 100644 --- a/install.go +++ b/install.go @@ -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) }