diff --git a/run.n b/run.n index 487a283e4..74e0af9a0 100644 Binary files a/run.n and b/run.n differ diff --git a/script/src/RunScript.hx b/script/src/RunScript.hx index d60f52491..3bdadea15 100644 --- a/script/src/RunScript.hx +++ b/script/src/RunScript.hx @@ -227,7 +227,15 @@ class RunScript { } var buildSharedLibs = (path == PathHelper.combine (limeDirectory, "project")); - var sharedLibsPath = PathHelper.combine (PathHelper.getHaxelib (new Haxelib ("nme-dev"), buildSharedLibs), "project"); + var sharedLibsPath = ""; + + //only request the path from shared libs if it's required, + //anything that doesn't use nme-dev would trip up on this otherwise + if(buildSharedLibs) { + + sharedLibsPath = PathHelper.combine (PathHelper.getHaxelib (new Haxelib ("nme-dev"), buildSharedLibs), "project"); + + } if (target == "wiiu" && path == PathHelper.combine (limeDirectory, "project")) {