From faba45d1e7fa22eb57bef14fb4b3d0eacfda81ce Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Mon, 18 Jan 2016 10:41:02 -0800 Subject: [PATCH] Add missing semicolons --- console/src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console/src/main.js b/console/src/main.js index a518c812fc..7711fdb2e4 100644 --- a/console/src/main.js +++ b/console/src/main.js @@ -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(); }