mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 10:35:50 +00:00
UT: Path fixes for windows.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
var path = require("path");
|
||||
|
||||
// Where to find the binary.
|
||||
exports.rippled = path.join(process.cwd(), "build/rippled");
|
||||
exports.rippled = path.resolve("build/rippled");
|
||||
|
||||
exports.server_default = "alpha";
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ Server.prototype.once = function (e, c) {
|
||||
};
|
||||
|
||||
Server.prototype.serverPath = function() {
|
||||
return "tmp/server/" + this.name;
|
||||
return path.resolve("tmp/server", this.name);
|
||||
};
|
||||
|
||||
Server.prototype.configPath = function() {
|
||||
|
||||
Reference in New Issue
Block a user