diff --git a/home/dot_local/bin/executable_install-program b/home/dot_local/bin/executable_install-program index 91567e3b..a5c4b70b 100644 --- a/home/dot_local/bin/executable_install-program +++ b/home/dot_local/bin/executable_install-program @@ -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')