Cosmetic (tabbing).

This commit is contained in:
Arthur Britto
2012-09-15 14:56:15 -07:00
parent 3a9c82c1cc
commit f45886cc6d
3 changed files with 69 additions and 66 deletions

View File

@@ -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

View File

@@ -15,3 +15,4 @@ buster.testCase("Check standalone server startup", {
}); });
// console.log("standalone-test.js<"); // console.log("standalone-test.js<");
// vim:ts=4

View File

@@ -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