Update file executable_install-program

This commit is contained in:
Brian Zalewski 2023-03-27 07:36:57 +00:00
parent 306f5c21c2
commit b4a8008227

View file

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