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?