fix bad path.join

这个提交包含在:
AJ ONeal 2015-12-15 15:23:05 +00:00
父节点 8944048d82
当前提交 3e6fecf008

查看文件

@ -14,7 +14,7 @@ module.exports.setChallenge = function (args, challengePath, keyAuthorization, d
// TODO should be args.webrootPath // TODO should be args.webrootPath
console.log('args.webrootPath, challengePath'); console.log('args.webrootPath, challengePath');
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) { if (err) {
done(err); done(err);
return; return;