Skip to content

Commit

Permalink
Update HaxeInstallHelper.as
Browse files Browse the repository at this point in the history
Typo fix for Mac Neko env-variable setup
  • Loading branch information
rat-moonshine authored Feb 28, 2024
1 parent 49f8c3f commit 0cbd26b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ package actionScripts.utils
if (FileUtils.isPathExists(neko.installToPath))
{
setCommand += getSetExportWithoutQuote("NEKO_HOME", neko.installToPath);
setPathCommand += (HelperConstants.IS_MACOS ? "NEKO_HOME:" : "%NEKO_HOME%;");
setPathCommand += (HelperConstants.IS_MACOS ? "$NEKO_HOME:" : "%NEKO_HOME%;");

setCommand += getSetExportWithoutQuote("DYLD_LIBRARY_PATH", neko.installToPath);
setPathCommand += (HelperConstants.IS_MACOS ? "$DYLD_LIBRARY_PATH:" : "%DYLD_LIBRARY_PATH%;");
Expand Down

0 comments on commit 0cbd26b

Please sign in to comment.