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) {