Update home/.local/bin/installx
This commit is contained in:
parent
28402398d9
commit
b55f527436
1 changed files with 3 additions and 1 deletions
|
@ -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`)
|
||||
|
|
Loading…
Reference in a new issue