From 70fb47d6ee50eb81bb4d33ec2ebeea9dd94480d6 Mon Sep 17 00:00:00 2001 From: James Mills Date: Sun, 14 Aug 2022 10:52:15 +1000 Subject: [PATCH] Fix default PATH for .zs for partials for Go 1.19 changes to LookPath handling --- main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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) }