diff --git a/bin/kcl-bootstrap b/bin/kcl-bootstrap index 22e6c488..96621999 100755 --- a/bin/kcl-bootstrap +++ b/bin/kcl-bootstrap @@ -229,7 +229,7 @@ function isDirectory(path) { function createDirectory(path) { try { - fs.mkdirSync(path); + fs.mkdirSync(path, {'recursive': true}); } catch (e) { if (e.code !== 'EEXIST') { throw e;