I am building a simple app with a TextField input.
I want to pass the input of the TextField to a cli tool I built with Golang.
This cli-tool is not sitting in /usr/bin but under ~/go/bin in my user directory.
So, when I try something like the answer to this question it's not able to find the executable.
I tried copying the executable in every single folder of the Application but I am still getting the same error.
Where exactly am I supposed to copy the executable? What does the code from this looks like after I copied it over?
/usr/bin. If I pass in/usr/bin/lsfor example everything is fine. But if I instead pass/Users/John/go/bin/myclitoolthat doesn't work/usr/binor for instance/bin/pwd, no complains. But if I point to my local executable/Users/John/bin/myclitoolit complains