Am 08.02.20 um 10:06 schrieb Miriam Rubio: > From: Pranit Bauva <pranit.bauva@xxxxxxxxx> > > Removes the `static` keyword from `exists_in_PATH()` function > and declares the function in `run-command.h` file. > The function will be used in bisect_visualize() in a later > commit. I couldn't find the mentioned later commit in this series. Do you actually still need to export exists_in_PATH()? And if yes: locate_in_PATH() splits PATH by colon. That means it doesn't work on Windows, where the paths are separated by semicolons. exists_in_PATH() wraps it, so it shares that limitation. Wouldn't that cause issues for your use? René