in cmake-runner-agent/src/jetbrains/buildServer/cmakerunner/agent/util/OSUtil.java [107:114]
public static boolean isCLIExist(@NotNull final Map<String, String> environment) {
try {
return new File(getCLIFullPath(environment)).exists();
} catch (final RunBuildException e) {
LOG.info("There no CLI found: " + e.getMessage());
return false;
}
}