diff --git a/maestro/src/test/java/org/intocps/maestro/util/CMakeUtil.java b/maestro/src/test/java/org/intocps/maestro/util/CMakeUtil.java index 04ad278e..94edbdaf 100644 --- a/maestro/src/test/java/org/intocps/maestro/util/CMakeUtil.java +++ b/maestro/src/test/java/org/intocps/maestro/util/CMakeUtil.java @@ -140,7 +140,7 @@ String toPath(File file) { public boolean generate(File source, File build, File install) throws IOException, InterruptedException, CMakeGenerateException { String cmake = "cmake"; - if (isMac() && "true".equals(System.getenv("CI"))) { + if (isMac() && !"true".equals(System.getenv("CI"))) { cmake = "/usr/local/bin/cmake"; }