AIRHelper: needs .app file extension on macOS if AIR target is bundle

This commit is contained in:
Josh Tynjala
2023-06-29 10:25:38 -07:00
parent b6ebe15d15
commit ef37cd9afb

View File

@@ -17,7 +17,10 @@ class AIRHelper
{
case MAC:
// extension = ".app";
if (airTarget == "bundle")
{
extension = ".app";
}
case IOS:
if (project.targetFlags.exists("simulator"))