Fix double escape of command on Haxe 3.4

This commit is contained in:
Joshua Granick
2017-01-23 13:04:32 -08:00
parent b80072febd
commit 7f4c0c3cae

View File

@@ -135,11 +135,13 @@ class ProcessHelper {
}
#if (haxe_ver < "3.4.0")
if (args != null && PlatformHelper.hostPlatform == Platform.WINDOWS) {
command = PathHelper.escape (command);
}
#end
if (safeExecute) {