From 6e9ed2a3fc1613837722c9dd0d84fa3101183833 Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Sun, 5 May 2024 06:58:35 +0000 Subject: [PATCH] Latest --- home/dot_local/bin/executable_installx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index 23fba785..ef3990a9 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -587,7 +587,9 @@ async function main() { log(`Running post-install script defined in ${scriptPath}`) return runScript(`post-${x.listKey}.sh`, fs.readFileSync(scriptPath, 'utf8')) }) - await Promise.allSettled(postScripts.concat(postScriptFiles)) + //await Promise.allSettled(postScripts.concat(postScriptFiles)) + await Promise.allSettled(postScripts) + await Promise.allSettled(postScriptFiles) log(`Starting services flagged with _serviceEnabled`) const systemctlInstalled = which.sync('systemctl', { nothrow: true }) const brewInstalled = which.sync('brew', { nothrow: true })