From 3e6fecf008ec751e1d627119aed0b40ebea84e11 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 15 Dec 2015 15:23:05 +0000 Subject: [PATCH] fix bad path.join --- lib/default-handlers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default-handlers.js b/lib/default-handlers.js index a07782e..6c35e46 100644 --- a/lib/default-handlers.js +++ b/lib/default-handlers.js @@ -14,7 +14,7 @@ module.exports.setChallenge = function (args, challengePath, keyAuthorization, d // TODO should be args.webrootPath console.log('args.webrootPath, challengePath'); console.log(args.webrootPath, challengePath); - mkdirp(path.join(args.webrootPath, challengePath), function (err) { + mkdirp(args.webrootPath, function (err) { if (err) { done(err); return;