Fix -args

This commit is contained in:
Joshua Granick
2014-11-01 13:26:02 -07:00
parent 07d00ff048
commit 013ed20093
5 changed files with 7 additions and 5 deletions

View File

@@ -248,7 +248,7 @@ class LinuxPlatform extends PlatformTarget {
public override function run ():Void {
var arguments = [];
var arguments = additionalArguments.copy ();
if (project.target == PlatformHelper.hostPlatform) {

View File

@@ -212,7 +212,7 @@ class MacPlatform extends PlatformTarget {
public override function run ():Void {
var arguments = [];
var arguments = additionalArguments.copy ();
if (project.target == PlatformHelper.hostPlatform) {

View File

@@ -197,7 +197,7 @@ class WindowsPlatform extends PlatformTarget {
public override function run ():Void {
var arguments = [];
var arguments = additionalArguments.copy ();
if (project.target == PlatformHelper.hostPlatform) {