Skip to content

Commit

Permalink
Use consistent capitalization.
Browse files Browse the repository at this point in the history
Not that `dirSuffix` includes any letters yet, but it likely will in the future.
  • Loading branch information
player-03 authored Feb 4, 2024
1 parent e72db10 commit 4ed893a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/platforms/MacPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ class MacPlatform extends PlatformTarget

if (noOutput) return;

NekoHelper.createExecutable(project.templatePaths, "mac" + dirSuffix, targetDirectory + "/obj/ApplicationMain.n", executablePath);
NekoHelper.copyLibraries(project.templatePaths, "mac" + dirSuffix, executableDirectory);
NekoHelper.createExecutable(project.templatePaths, "mac" + dirSuffix.toLowerCase(), targetDirectory + "/obj/ApplicationMain.n", executablePath);
NekoHelper.copyLibraries(project.templatePaths, "mac" + dirSuffix.toLowerCase(), executableDirectory);
}
else if (targetType == "hl")
{
Expand Down Expand Up @@ -327,7 +327,7 @@ class MacPlatform extends PlatformTarget
context.NODE_FILE = executableDirectory + "/ApplicationMain.js";
context.HL_FILE = targetDirectory + "/obj/ApplicationMain.hl";
context.CPP_DIR = targetDirectory + "/obj/";
context.BUILD_DIR = project.app.path + "/mac" + dirSuffix;
context.BUILD_DIR = project.app.path + "/mac" + dirSuffix.toLowerCase();

return context;
}
Expand Down

0 comments on commit 4ed893a

Please sign in to comment.