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