From b55f52743641541213d10dafd4bcca182a328c5a Mon Sep 17 00:00:00 2001 From: Marley Rae Date: Tue, 3 Sep 2024 12:18:52 -0400 Subject: [PATCH] Update home/.local/bin/installx --- 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 41d05a3a..b34b576e 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -390,8 +390,10 @@ async function installPackages(pkgInstructions) { process.env.DEBUG && console.log('Queued installs:', promises) // const installs = await Promise.allSettled(promises) + let installs = [] for (const cmd of promises) { - await cmd + const res = await cmd + installs.push(res) } log(`All of the installations have finished`)