debug msg

This commit is contained in:
DBHeise 2019-01-15 09:24:08 -05:00
parent 8921d56877
commit 15a55e0a65

View file

@ -13,9 +13,10 @@ import childProcess from "child_process";
const mkdirSync = function (dirPath) {
console.log("Ensuring Folder: " + dirPath)
try {
fs.mkdirSync(dirPath);
console.log("Folder Ensured: " + dirPath)
} catch (err) {
if (err.code !== "EEXIST") throw err;
}