From a966328eeaa96cf9a7ec30033f7d0d894c6c3a0f Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Tue, 7 Feb 2023 11:34:10 +0000 Subject: [PATCH] Update bootstrap.js --- bootstrap.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bootstrap.js b/bootstrap.js index 87bc1f8..8a59e84 100755 --- a/bootstrap.js +++ b/bootstrap.js @@ -139,8 +139,7 @@ for (const symLink of symLinks) { const targetSymLink = HOME + (symLink.split('/').slice(1).join('/')) const sourceSymLink = process.cwd() + '/' + symLink; if (!fs.existsSync(targetSymLink)) { - console.log(`Not creating symlink for ${targetSymLink}... it does not exist...`); - continue; + fs.mkdirSync(targetSymLink, { recursive: true }); } console.log(`Creating symlink between ${sourceSymLink} to ${targetSymLink}`);