Explorar o código

[cs] Use single quotes on RunCi

Cauê Waneck %!s(int64=10) %!d(string=hai) anos
pai
achega
bfb15a8e58
Modificáronse 1 ficheiros con 6 adicións e 6 borrados
  1. 6 6
      tests/RunCi.hx

+ 6 - 6
tests/RunCi.hx

@@ -559,22 +559,22 @@ class RunCi {
 							"";
 					};
 
-					runCommand("haxe", ["compile-cs$compl.hxml"]);
+					runCommand("haxe", ['compile-cs$compl.hxml']);
 					runExe("bin/cs/bin/Test-Debug.exe");
 
-					runCommand("haxe", ["compile-cs-unsafe$compl.hxml"]);
+					runCommand("haxe", ['compile-cs-unsafe$compl.hxml']);
 					runExe("bin/cs_unsafe/bin/Test-Debug.exe");
 
-					runCommand("haxe", ["compile-cs$compl.hxml","-D","erase_generics"]);
+					runCommand("haxe", ['compile-cs$compl.hxml',"-D","erase_generics"]);
 					runExe("bin/cs/bin/Test-Debug.exe");
 
-					runCommand("haxe", ["compile-cs-unsafe$compl.hxml","-D","erase_generics"]);
+					runCommand("haxe", ['compile-cs-unsafe$compl.hxml',"-D","erase_generics"]);
 					runExe("bin/cs_unsafe/bin/Test-Debug.exe");
 
-					runCommand("haxe", ["compile-cs$compl.hxml","-D","no_root"]);
+					runCommand("haxe", ['compile-cs$compl.hxml',"-D","no_root"]);
 					runExe("bin/cs/bin/Test-Debug.exe");
 
-					runCommand("haxe", ["compile-cs-unsafe$compl.hxml","-D","no_root","-D","erase_generics"]);
+					runCommand("haxe", ['compile-cs-unsafe$compl.hxml',"-D","no_root","-D","erase_generics"]);
 					runExe("bin/cs_unsafe/bin/Test-Debug.exe");
 
 					changeDirectory(sysDir);