From 3e508fb6135158262c425cace1550f604eac0c01 Mon Sep 17 00:00:00 2001 From: Benjamin Kyd Date: Wed, 1 Feb 2023 16:52:32 +0000 Subject: [PATCH] more bootstrap script --- bootstrap.js | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/bootstrap.js b/bootstrap.js index eaaa5df..b40d6ea 100755 --- a/bootstrap.js +++ b/bootstrap.js @@ -52,12 +52,19 @@ if (!installScripts.includes(targetInstallScript)) { } console.log('Installing dependencies...'); -//const installOutput = subProcess.spawn('./' + targetInstallScript, { - //detached: true, -//}); -//console.log(installOutput.toString()); +subProcess.spawnSync('./' + targetInstallScript, [], { + stdio: 'inherit', +}); + +console.log('Successfully installed OS deps...'); const parentDir = 'common'; const targetDir = host; +// we want to create a symlink between home/ & host/ to ~/ +// for every file stored in this repo, beforeso we need +// to create a .bak/ of the origionals as this might +// well cause some issues... + +