فهرست منبع

[cs] Use single quotes on RunCi

Cauê Waneck 10 سال پیش
والد
کامیت
bfb15a8e58
1فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  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);