I’ve been contributing to okteto and for building as well as testing the changes, I’ve used make command which results in the creation of binary /bin/okteto that can be used to test changes. However, the okteto project lies in my Documents folder whereas the application lies on my Desktop folder. Is there a way that I can use okteto binary on my application that’s in Desktop?
I know I can copy the okteto binary to my desktop - however, I’ll have to do it every time i type make command to build the okteto binary.
I am not sure i understood correctly your inquiry. Running make build under the okteto project folder will create the binary at bin/okteto, in order to run this from any location what i suggest is to create an alias at your to this path and use this anywhere, such as:
alias ok="/Users/<user>/Documents/okteto/bin/okteto"
This way when you use ok is pointing to the build binary, and when using okteto is using the application.
Hope this helps, if not let us know if you need further help!