Add initial support for '--output-file' option on 'display' command
This commit is contained in:
@@ -72,7 +72,14 @@ class TVOSPlatform extends PlatformTarget
|
||||
|
||||
public override function display():Void
|
||||
{
|
||||
Sys.println(getDisplayHXML());
|
||||
if (project.targetFlags.exists("output-file"))
|
||||
{
|
||||
Sys.println(Path.combine(targetDirectory, project.app.file + ".xcodeproj"));
|
||||
}
|
||||
else
|
||||
{
|
||||
Sys.println(getDisplayHXML());
|
||||
}
|
||||
}
|
||||
|
||||
private function generateContext():Dynamic
|
||||
|
||||
Reference in New Issue
Block a user