mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 01:56:22 +02:00
Add missing semicolons
This commit is contained in:
parent
cb5c1b12c5
commit
faba45d1e7
1 changed files with 2 additions and 2 deletions
|
@ -164,7 +164,7 @@ function binaryMissingMessage(displayName, executableName, required) {
|
||||||
var paths = pathFinder.searchPaths(executableName, argv.localReleaseBuilds);
|
var paths = pathFinder.searchPaths(executableName, argv.localReleaseBuilds);
|
||||||
message += paths.join("\n");
|
message += paths.join("\n");
|
||||||
} else {
|
} else {
|
||||||
message += "It is expected to be found beside this executable.\n"
|
message += "It is expected to be found beside this executable.\n";
|
||||||
message += "You may need to re-install the Server Console.";
|
message += "You may need to re-install the Server Console.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -179,7 +179,7 @@ if (!dsPath) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!acPath) {
|
if (!acPath) {
|
||||||
dialog.showErrorBox("Assignment Client Not Found", binaryMissingMessage("assignment-client", "assignment-client", true))
|
dialog.showErrorBox("Assignment Client Not Found", binaryMissingMessage("assignment-client", "assignment-client", true));
|
||||||
app.quit();
|
app.quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue