Explorar el Código

TravisCI: fixed haxelib git nodejs...

Andy Li hace 11 años
padre
commit
864fbde2f8
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tests/RunTravis.hx

+ 2 - 2
tests/RunTravis.hx

@@ -24,7 +24,7 @@ class RunTravis {
 
 			if (exitCode == 0) {
 				return;
-			} else {
+			} else if (trials > 0) {
 				Sys.println('Command will be re-run...');
 			}
 		}
@@ -131,7 +131,7 @@ class RunTravis {
 					//https://saucelabs.com/opensource/travis
 					runCommand("npm", ["install", "wd"], true);
 					runCommand("curl", ["https://gist.github.com/santiycr/5139565/raw/sauce_connect_setup.sh", "-L", "|", "bash"], true);
-					runCommand("haxelib", ["git", "nodejs", "https://github.com/dionjwa/nodejs-std.git", "src"], true);
+					runCommand("haxelib", ["git", "nodejs", "https://github.com/dionjwa/nodejs-std.git", "master", "src"], true);
 					runCommand("haxe", ["compile-saucelabs-runner.hxml"]);
 					runCommand("nekotools", ["server", "&"]);
 					runCommand("node", ["RunSauceLabs.js"]);