You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
I started using the library https://github.com/Joker/jade, never used go generate before. And now when trying to create hello.jade, I get the output ' "jade": exec: "jade": executable file not found in %PATH%'.
Does this mean that I need to specify pug in the global variables, or do I need to do something in the library itself
Brian Candler
unread,
May 8, 2021, 3:51:55 AM5/8/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
You need to get to the point where typing "jade" at the shell runs the jade executable, like this.
Did you install the jade executable? The error says the jade executable was not found in your search path. If you let go install the jade binary in its usual location ($GOBIN) this implies $GOBIN isn't in your PATH.
Under Linux, I'd add ~/go/bin to $PATH. Sorry but I don't know what the equivalent is for Windows.
Brian Candler
unread,
May 8, 2021, 4:09:19 AM5/8/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message