From 05a84092a2b3cb55114bc310cfe5fd4c8cc61841 Mon Sep 17 00:00:00 2001 From: Marley Rae Date: Tue, 3 Sep 2024 12:06:49 -0400 Subject: [PATCH] Update home/.local/bin/installx --- home/dot_local/bin/executable_installx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index af2f2f9d..41d05a3a 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -389,7 +389,11 @@ async function installPackages(pkgInstructions) { log(`Performing ${promises.length} installations`) process.env.DEBUG && console.log('Queued installs:', promises) // const installs = await Promise.allSettled(promises) - const installs = await parallelLimit(promises, 5) + + for (const cmd of promises) { + await cmd + } + log(`All of the installations have finished`) process.env.DEBUG && console.log('Completed installs:', installs) await postInstall(combined)