diff --git a/brain/api/v1/auth.js b/brain/api/v1/auth.js index b7a9c25..91888cb 100644 --- a/brain/api/v1/auth.js +++ b/brain/api/v1/auth.js @@ -206,13 +206,15 @@ router.post('/init', function (req, res) { '---\n' + index.content; - fs.writeFile('content/pages/index.md', init) - .then(() => { - console.log('index file created'); - }) - .catch(err => { - console.log('ERROR', err); - }); + fs.ensureDir('content/pages/').then(() => { + fs.writeFile('content/pages/index.md', init) + .then(() => { + //console.log('index file created'); + }) + .catch(() => { + //console.log('ERROR', err); + }); + }); }); res.json({