Fix default PATH for .zs for partials for Go 1.19 changes to LookPath handling

This commit is contained in:
James Mills 2022-08-14 10:52:15 +10:00
parent efa11e9761
commit 70fb47d6ee
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

View File

@ -168,7 +168,7 @@ func render(s string, vars Vars) (string, error) {
}
}
}
}
// Renders markdown with the given layout into html expanding all the macros
@ -298,7 +298,8 @@ func buildAll(watch bool) {
func init() {
// prepend .zs to $PATH, so plugins will be found before OS commands
p := os.Getenv("PATH")
p = ZSDIR + ":" + p
w, _ := os.Getwd()
p = filepath.Join(w, ZSDIR) + ":" + p
os.Setenv("PATH", p)
}