mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 16:23:39 +02:00
use join to print path strings
This commit is contained in:
parent
2dbeba3324
commit
a584bb9e38
1 changed files with 1 additions and 3 deletions
|
@ -69,9 +69,7 @@ function binaryMissingMessage(displayName, executableName, required) {
|
|||
message += "It was expected to be found at one of the following paths:\n";
|
||||
|
||||
var paths = pathFinder.searchPaths(executableName, argv.localReleaseBuilds);
|
||||
for (var i = 0; i < paths.length; i++) {
|
||||
message += paths[i] + "\n";
|
||||
}
|
||||
message += paths.join("\n");
|
||||
} else {
|
||||
message += "It is expected to be found beside this executable.\n"
|
||||
message += "You may need to re-install the Server Console.";
|
||||
|
|
Loading…
Reference in a new issue