Skip to content

Commit

Permalink
AIRHelper: needs .app file extension on macOS if AIR target is bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Jun 29, 2023
1 parent b6ebe15 commit ef37cd9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lime/tools/AIRHelper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ class AIRHelper
{
case MAC:

// extension = ".app";
if (airTarget == "bundle")
{
extension = ".app";
}

case IOS:
if (project.targetFlags.exists("simulator"))
Expand Down

0 comments on commit ef37cd9

Please sign in to comment.