Latest
This commit is contained in:
parent
c44cd67853
commit
861e8ce32f
1 changed files with 7 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue