We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3852d7 commit df4519bCopy full SHA for df4519b
tools/platforms/MacPlatform.hx
@@ -653,6 +653,16 @@ class MacPlatform extends PlatformTarget
653
var limeDirectory = Haxelib.getPath(new Haxelib("lime"), true);
654
var bindir = "Mac64";
655
var bundledHLDirectory = Path.combine(limeDirectory, 'templates/bin/hl/$bindir');
656
+ if (!FileSystem.exists(bundledHLDirectory))
657
+ {
658
+ Log.error('Directory does not exist: $bundledHLDirectory');
659
+ return;
660
+ }
661
+ if (!FileSystem.isDirectory(bundledHLDirectory))
662
663
+ Log.error('Not a directory: $bundledHLDirectory');
664
665
666
667
// these are the known directories where Homebrew installs its dependencies
668
// we may need to add more in the future, but this seems to be enough for now
0 commit comments