1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-08-20 07:25:59 +00:00

Fixed a MacOS-specific issue

This commit is contained in:
EliteMasterEric 2023-11-01 23:09:52 -04:00
parent ffd0a98393
commit 15ffbf2fe7

View file

@ -1,5 +1,7 @@
package funkin.util;
import haxe.io.Path;
/**
* Utilties for interpreting command line arguments.
*/
@ -13,9 +15,20 @@ class CLIUtil
public static function resetWorkingDir():Void
{
#if sys
var exeDir:String = haxe.io.Path.directory(Sys.programPath());
trace('Changing working directory from ${Sys.getCwd()} to ${exeDir}');
Sys.setCwd(exeDir);
var exeDir:String = Path.addTrailingSlash(Path.directory(Sys.programPath()));
#if mac
exeDir = Path.addTrailingSlash(Path.join([exeDir, '../Resources/']));
#end
var cwd:String = Path.addTrailingSlash(Sys.getCwd());
if (cwd == exeDir)
{
trace('Working directory is already correct.');
}
else
{
trace('Changing working directory from ${Sys.getCwd()} to ${exeDir}');
Sys.setCwd(exeDir);
}
#end
}