cortesi / modd

A flexible developer tool that runs processes and responds to filesystem changes
MIT License
2.79k stars 130 forks source link

zsh: command not found: modd on M2 #127

Closed akintaylor closed 1 year ago

akintaylor commented 1 year ago

I followed the readme and I get this error. zsh: command not found: modd

Now I do not even know where the binary is located

wader commented 1 year ago

You used go install? Then the binary will end up in GOBIN. Try run go env GOBIN to see where it is

akintaylor commented 1 year ago

Ah, thank you, @wader. Well, my GOBIN is an empty string. GOBIN=""

wader commented 1 year ago

Ah sorry try look in $(go env GOPATH)/bin

akintaylor commented 1 year ago

@wader Thanks for helping me with this.

The issue here was the go on PATH did not match with the GOPATH and hence my GOBIN was referencing the wrong path for installed packages. False alarm and will close this. Cheers