From 228a6a01bc757bd91b6fa618115ce454478fbb8c Mon Sep 17 00:00:00 2001 From: Richard Wu Date: Fri, 22 Apr 2022 12:41:46 -0400 Subject: [PATCH] kcl-bootstrap: recursively make directories. --- bin/kcl-bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;