Fix default template path in installer

This commit is contained in:
Kailash Nadh 2020-03-08 11:04:34 +05:30
parent 40ae9cdb31
commit ac2145de89
1 changed files with 1 additions and 2 deletions

View File

@ -96,7 +96,7 @@ func install(db *sqlx.DB, fs stuffbin.FileSystem, prompt bool) {
} }
// Default template. // Default template.
tplBody, err := ioutil.ReadFile("email-templates/default.tpl") tplBody, err := ioutil.ReadFile("static/email-templates/default.tpl")
if err != nil { if err != nil {
tplBody = []byte(tplTag) tplBody = []byte(tplTag)
} }
@ -134,7 +134,6 @@ func install(db *sqlx.DB, fs stuffbin.FileSystem, prompt bool) {
lo.Printf("Setup complete") lo.Printf("Setup complete")
lo.Printf(`Run the program and access the dashboard at %s`, ko.MustString("app.address")) lo.Printf(`Run the program and access the dashboard at %s`, ko.MustString("app.address"))
} }
// installMigrate executes the SQL schema and creates the necessary tables and types. // installMigrate executes the SQL schema and creates the necessary tables and types.