Update file executable_install-program
This commit is contained in:
parent
306f5c21c2
commit
b4a8008227
1 changed files with 5 additions and 1 deletions
|
@ -1780,7 +1780,11 @@ async function installSoftware(pkgsToInstall) {
|
|||
log('info', 'Bin', 'Linking bin aliases to their installed packages')
|
||||
await linkBin(installOrdersBinLink)
|
||||
for (const script of installOrdersPost) {
|
||||
await $`${script}`
|
||||
try {
|
||||
await $`${script}`
|
||||
} catch(e) {
|
||||
log('info', 'Post-Install Hook', 'Encountered error while running post-install hook')
|
||||
}
|
||||
}
|
||||
}
|
||||
installOrdersPlugins.length && log('info', 'Plugin', 'Installing package-specific plugins')
|
||||
|
|
Loading…
Reference in a new issue