mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-16 07:39:11 +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);
|
||||
message += paths.join("\n");
|
||||
} 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.";
|
||||
}
|
||||
|
||||
|
@ -179,7 +179,7 @@ if (!dsPath) {
|
|||
}
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue