go-mod-outdated
go-mod-outdated copied to clipboard
zsh: command not found: go-mod-outdated
When i do go get -u github.com/psampaz/go-mod-outdated
and then go list -u -m -json all | go-mod-outdated
I get zsh: command not found: go-mod-outdated
@shareef-dweikat this is not related to with go-mod-outdated but to you local configuration related to PATH environment variable.
I think the binary should be located in GOPATH folder. You can find it using go env
try this
go list -u -m -json all | {absolute path}/go-mod-outdated
or try to fix you config
Thanks, it worked.
go list -u -m -json all | /Users/MyUsername/go/bin/go-mod-outdated