diff --git a/main.go b/main.go index f5240d6..5335dcc 100644 --- a/main.go +++ b/main.go @@ -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) }