Browse Source

properly escape invocation arguments

Simon Krajewski 11 years ago
parent
commit
e1c87d398d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/RunTravis.hx

+ 2 - 2
tests/RunTravis.hx

@@ -337,13 +337,13 @@ class RunTravis {
 				Sys.setCwd("../sys");
 				runCommand("haxe", ["compile-neko.hxml"]);
 				Sys.setCwd("bin/neko");
-				runCommand("neko", ["sys.n", "foo", "12", "a b c\\"]);
+				runCommand("neko", ["sys.n", "foo", "12", "a b c\\\\"]);
 			case "python-sys":
 				getPythonDependencies();
 				Sys.setCwd("../sys");
 				runCommand("haxe", ["compile-python.hxml"]);
 				Sys.setCwd("bin/python");
-				runCommand("python3", ["sys.py", "foo", "12", "a b c\\"]);
+				runCommand("python3", ["sys.py", "foo", "12", "a b c\\\\"]);
 			case "openfl-samples":
 				getOpenFLDependencies(unitDir);