added directory check to init when making index md file

This commit is contained in:
Ro 2020-07-20 13:02:47 -07:00
parent 575fea388b
commit ad09a61ab7

View file

@ -206,12 +206,14 @@ router.post('/init', function (req, res) {
'---\n' + '---\n' +
index.content; index.content;
fs.ensureDir('content/pages/').then(() => {
fs.writeFile('content/pages/index.md', init) fs.writeFile('content/pages/index.md', init)
.then(() => { .then(() => {
console.log('index file created'); //console.log('index file created');
}) })
.catch(err => { .catch(() => {
console.log('ERROR', err); //console.log('ERROR', err);
});
}); });
}); });