Bläddra i källkod

[lua] get runCommand order right for brew install python

Justin Donaldson 8 år sedan
förälder
incheckning
2fcd720fdb
1 ändrade filer med 2 tillägg och 2 borttagningar
  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"], true);
-			  runCommand("brew", ["install", "python"], true);
+			  runCommand("brew", ["install", "pcre"], false, true);
+			  runCommand("brew", ["install", "python"], false, true);
 			}
 		}
 		runCommand("pip", ["install", "hererocks"]);