I have a custom tool installed on Linux. Let's call it MyLoggingTool. which MyLoggingTool
reveals it's located under ~/.local/bin/MyLoggingTool
.
Now I have a build process where I also use this tool but in a different way, I have to use a version located somewhere in a relative path. I cannot prefix the toolname with a path in my scripts as this would make both processes too different.
I would like to hide the toolpath of the installed one with the toolpath to my local version. How would I do sth like that? I tried to just set a variable `called MyLoggingTool
, hoping it would hide the installed toolpath, but it doesn't work.