This commit is contained in:
Brian Zalewski 2024-05-05 06:58:35 +00:00
parent bfec0f5724
commit 6e9ed2a3fc

View file

@ -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 })