From 44f890f836b3781415c18f33e2391acd4fcdb940 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 1 Oct 2014 14:21:12 -0700 Subject: [PATCH] Minor tweak --- tools/platforms/FlashPlatform.hx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tools/platforms/FlashPlatform.hx b/tools/platforms/FlashPlatform.hx index 51e899dc6..5f33cb047 100644 --- a/tools/platforms/FlashPlatform.hx +++ b/tools/platforms/FlashPlatform.hx @@ -13,8 +13,8 @@ import helpers.ProcessHelper; import project.AssetType; import project.Haxelib; import project.HXProject; -import project.PlatformTarget; import project.Platform; +import project.PlatformTarget; import sys.io.File; import sys.FileSystem; @@ -65,18 +65,18 @@ class FlashPlatform extends PlatformTarget { } if (PlatformHelper.hostPlatform != Platform.WINDOWS) { - - for (i in 0...args.length) { - - if (args[i].indexOf ("(") > -1) { - - args[i] = "'" + args[i] + "'"; - - } - - } - - } + + for (i in 0...args.length) { + + if (args[i].indexOf ("(") > -1) { + + args[i] = "'" + args[i] + "'"; + + } + + } + + } ProcessHelper.runCommand ("", "haxe", args);