Latest
This commit is contained in:
parent
bfec0f5724
commit
6e9ed2a3fc
1 changed files with 3 additions and 1 deletions
|
@ -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 })
|
||||
|
|
Loading…
Reference in a new issue