Browse Source

[lua] ignore pre-existing brew failures for preexisting libs

Justin Donaldson 8 years ago
parent
commit
3c91893b56
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/RunCi.hx

+ 2 - 2
tests/RunCi.hx

@@ -463,8 +463,8 @@ class RunCi {
 		switch (systemName){
 			case "Linux": requireAptPackages(["libpcre3-dev"]);
 			case "Mac": {
-			  runCommand("brew", ["install", "pcre"]);
-			  runCommand("brew", ["install", "python"]);
+			  runCommand("brew", ["install", "pcre"], true);
+			  runCommand("brew", ["install", "python"], true);
 			}
 		}
 		runCommand("pip", ["install", "hererocks"]);