From 7f4c0c3caeb1f18a0e6d2a45a2d4cdd4faaddc95 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Mon, 23 Jan 2017 13:04:32 -0800 Subject: [PATCH] Fix double escape of command on Haxe 3.4 --- lime/tools/helpers/ProcessHelper.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lime/tools/helpers/ProcessHelper.hx b/lime/tools/helpers/ProcessHelper.hx index 645685711..8fd744b2f 100644 --- a/lime/tools/helpers/ProcessHelper.hx +++ b/lime/tools/helpers/ProcessHelper.hx @@ -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) {