Fix -args
This commit is contained in:
@@ -248,7 +248,7 @@ class LinuxPlatform extends PlatformTarget {
|
||||
|
||||
public override function run ():Void {
|
||||
|
||||
var arguments = [];
|
||||
var arguments = additionalArguments.copy ();
|
||||
|
||||
if (project.target == PlatformHelper.hostPlatform) {
|
||||
|
||||
|
||||
@@ -212,7 +212,7 @@ class MacPlatform extends PlatformTarget {
|
||||
|
||||
public override function run ():Void {
|
||||
|
||||
var arguments = [];
|
||||
var arguments = additionalArguments.copy ();
|
||||
|
||||
if (project.target == PlatformHelper.hostPlatform) {
|
||||
|
||||
|
||||
@@ -197,7 +197,7 @@ class WindowsPlatform extends PlatformTarget {
|
||||
|
||||
public override function run ():Void {
|
||||
|
||||
var arguments = [];
|
||||
var arguments = additionalArguments.copy ();
|
||||
|
||||
if (project.target == PlatformHelper.hostPlatform) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user