Procházet zdrojové kódy

[cs] Use single quotes on RunCi

Cauê Waneck před 10 roky
rodič
revize
bfb15a8e58
1 změnil soubory, kde provedl 6 přidání a 6 odebrání
  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);