From ee7079fbe534e4bdbea38c120b9f0ee56af6b209 Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Tue, 7 Feb 2023 11:54:02 +0000 Subject: [PATCH] Update bootstrap.js --- bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.js b/bootstrap.js index 9c5ec76..21614b8 100755 --- a/bootstrap.js +++ b/bootstrap.js @@ -141,7 +141,7 @@ for (const symLink of symLinks) { console.log(`Creating symlink between ${sourceSymLink} to ${targetSymLink}`); if (!fs.existsSync(targetSymLink.split('/').slice(1).join('/'))) { - fs.mkdirSync(targetSymLink, { recursive: true }); + fs.mkdirSync(targetSymLink.split('/').slice(1).join('/'), { recursive: true }); } if (fs.existsSync(targetSymLink)) {