From b4a80082274a66d71fd8b9a007ce32851626c6d0 Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Mon, 27 Mar 2023 07:36:57 +0000 Subject: [PATCH] Update file executable_install-program --- home/dot_local/bin/executable_install-program | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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')