Use a standardized 'targetDirectory' value in the target handlers, and pass this onto the library processors for use with caching
This commit is contained in:
@@ -12,6 +12,7 @@ class PlatformTarget {
|
||||
public var additionalArguments:Array <String>;
|
||||
public var command:String;
|
||||
public var project:HXProject;
|
||||
public var targetDirectory:String;
|
||||
public var targetFlags:Map <String, String>;
|
||||
public var traceEnabled = true;
|
||||
|
||||
@@ -65,7 +66,7 @@ class PlatformTarget {
|
||||
if (!Reflect.hasField (metaFields.update, "ignore") && (command == "update" || command == "build" || command == "test")) {
|
||||
|
||||
LogHelper.info ("", "\n" + LogHelper.accentColor + "Running command: UPDATE" + LogHelper.resetColor);
|
||||
AssetHelper.processLibraries (project);
|
||||
AssetHelper.processLibraries (project, targetDirectory);
|
||||
update ();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user