From 861e8ce32fa8f85be461ae777129827b1226ff7a Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Sat, 4 May 2024 09:28:17 +0000 Subject: [PATCH] Latest --- home/dot_local/bin/executable_installx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index d4aae714..c33529c5 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -242,11 +242,17 @@ async function bundleInstall(brews, casks, caskMap) { log(`Installing packages via brew bundle`) await $`brew bundle --file Brewfile` log(`Finished installing via Brewfile`) - await createCaskLinks(caskMap) } catch (e) { console.log('Error:', e) log(`Error occurred while installing via Brewfile`) } + + try { + await createCaskLinks(caskMap) + } catch (e) { + console.log('Error:', e) + log(`Error occurred while creating cask bin links`) + } } async function forEachSeries(iterable) {