Browse Source

Fix default template location in install

Kailash Nadh 6 years ago
parent
commit
1ca8c2faf2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      install.go

+ 1 - 1
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)
 	}