From 7b359f8338af1118f882e4fe344ef5c99c54c0a3 Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Wed, 4 May 2022 19:39:54 +0200 Subject: [PATCH] Do not stop if one tap was impossible --- modules/03-install-brew.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/03-install-brew.sh b/modules/03-install-brew.sh index ea621c2..055cbb6 100755 --- a/modules/03-install-brew.sh +++ b/modules/03-install-brew.sh @@ -248,9 +248,9 @@ function configure_system() { indicateActivity 'Install Homebrew core' installHomebrewCore || return 18 indicateActivity 'Install Homebrew updater' installHomebrewUpdater || return 19 pushd -q / - indicateActivity 'Tapping homebrew/cask' tapHomebrewCask || return 20 - indicateActivity 'Tapping homebrew/cask-fonts' tapHomebrewCaskFonts || return 21 - indicateActivity 'Tapping homebrew/cask-drivers' tapHomebrewCaskDrivers || return 22 + indicateActivity 'Tapping homebrew/cask' tapHomebrewCask + indicateActivity 'Tapping homebrew/cask-fonts' tapHomebrewCaskFonts + indicateActivity 'Tapping homebrew/cask-drivers' tapHomebrewCaskDrivers popd -q }