Improve support for Adobe AIR mobile, use 'dist' for lime deploy output

This commit is contained in:
Joshua Granick
2017-08-25 12:11:33 -07:00
parent 41e9e877a1
commit 194bfde219
6 changed files with 115 additions and 22 deletions

View File

@@ -1489,6 +1489,34 @@ class CommandLineTools {
}
if (targetFlags.exists ("air")) {
switch (targetName) {
case "android":
targetName = "air";
targetFlags.set ("android", "");
case "ios":
targetName = "air";
targetFlags.set ("ios", "");
case "windows":
targetName = "air";
targetFlags.set ("windows", "");
case "mac", "macos":
targetName = "air";
targetFlags.set ("mac", "");
}
}
var target = null;
switch (targetName) {