mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 11:35:53 +00:00
Cosmetic (tabbing).
This commit is contained in:
@@ -33,3 +33,4 @@ var start = function(name, done) {
|
|||||||
exports.start = start;
|
exports.start = start;
|
||||||
|
|
||||||
console.log("server.js<");
|
console.log("server.js<");
|
||||||
|
// vim:ts=4
|
||||||
|
|||||||
@@ -15,3 +15,4 @@ buster.testCase("Check standalone server startup", {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// console.log("standalone-test.js<");
|
// console.log("standalone-test.js<");
|
||||||
|
// vim:ts=4
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ var path = require("path");
|
|||||||
var filterErr = function(code, done) {
|
var filterErr = function(code, done) {
|
||||||
return function (e) {
|
return function (e) {
|
||||||
done(e.code !== code ? e : undefined);
|
done(e.code !== code ? e : undefined);
|
||||||
}
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
var throwErr = function(done) {
|
var throwErr = function(done) {
|
||||||
@@ -74,7 +74,7 @@ var emptyPath = function(dirPath, done) {
|
|||||||
|
|
||||||
// Remove path recursively.
|
// Remove path recursively.
|
||||||
var rmPath = function(dirPath, done) {
|
var rmPath = function(dirPath, done) {
|
||||||
// console.log("rmPath: %s", dirPath);
|
console.log("rmPath: %s", dirPath);
|
||||||
|
|
||||||
fs.lstat(dirPath, function (err, stats) {
|
fs.lstat(dirPath, function (err, stats) {
|
||||||
if (err && err.code == "ENOENT") {
|
if (err && err.code == "ENOENT") {
|
||||||
@@ -127,3 +127,4 @@ exports.resetPath = resetPath;
|
|||||||
exports.rmPath = rmPath;
|
exports.rmPath = rmPath;
|
||||||
exports.trace = trace;
|
exports.trace = trace;
|
||||||
|
|
||||||
|
// vim:ts=4
|
||||||
|
|||||||
Reference in New Issue
Block a user