Ensure tools rebuild occurs from limeDirectory
This commit is contained in:
@@ -59,7 +59,7 @@ class RunScript {
|
||||
|
||||
if (PlatformHelper.hostPlatform == WINDOWS) {
|
||||
|
||||
ProcessHelper.runCommand ("", "neko", args.concat ([ "windows", toolsDirectory ]));
|
||||
ProcessHelper.runCommand (limeDirectory, "neko", args.concat ([ "windows", toolsDirectory ]));
|
||||
|
||||
}
|
||||
|
||||
@@ -67,7 +67,7 @@ class RunScript {
|
||||
|
||||
if (PlatformHelper.hostPlatform == MAC) {
|
||||
|
||||
ProcessHelper.runCommand ("", "neko", args.concat ([ "mac", toolsDirectory ]));
|
||||
ProcessHelper.runCommand (limeDirectory, "neko", args.concat ([ "mac", toolsDirectory ]));
|
||||
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ class RunScript {
|
||||
|
||||
if (PlatformHelper.hostPlatform == LINUX && PlatformHelper.hostArchitecture == X86) {
|
||||
|
||||
ProcessHelper.runCommand ("", "neko", args.concat ([ "linux", "-32", toolsDirectory ]));
|
||||
ProcessHelper.runCommand (limeDirectory, "neko", args.concat ([ "linux", "-32", toolsDirectory ]));
|
||||
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ class RunScript {
|
||||
|
||||
if (PlatformHelper.hostPlatform == LINUX && PlatformHelper.hostArchitecture == X64) {
|
||||
|
||||
ProcessHelper.runCommand ("", "neko", args.concat ([ "linux", "-64", toolsDirectory ]));
|
||||
ProcessHelper.runCommand (limeDirectory, "neko", args.concat ([ "linux", "-64", toolsDirectory ]));
|
||||
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@ class RunScript {
|
||||
|
||||
if (LogHelper.verbose) {
|
||||
|
||||
LogHelper.warn ("", "Warning: Source path \"" + source + "\" does not exist");
|
||||
LogHelper.warn ("", "Source path \"" + source + "\" does not exist");
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user