From 6d724ceaa11f9d2bd2c7d4ad17490875196f57fd Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Mon, 2 Sep 2024 22:30:38 -0400 Subject: [PATCH] Update home/.local/bin/installx --- home/dot_local/bin/executable_installx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index 4fc80575..28f2e1de 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -387,12 +387,12 @@ 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 Promise.allSettled(promises) - let installs - promises.forEach((p) => { - installs.push(await p) - }) + #let installs + #promises.forEach((p) => { + # installs.push(await p) + #}) log(`All of the installations have finished`) process.env.DEBUG && console.log('Completed installs:', installs)