Make UT mkPath take strings as mode.

This commit is contained in:
Arthur Britto
2012-09-17 12:34:35 -07:00
parent 8b1ec78747
commit d0d8fb4195
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ var makeBase = function(name, done) {
console.log("start> %s: %s", name, path);
// Reset the server directory, build it if needed.
utils.resetPath(path, parseInt('0777', 8), function (e) {
utils.resetPath(path, '0777', function (e) {
if (e) {
throw e;
}