Skip to content

Commit

Permalink
Revert "Remove homebrew autoupdate deactivation from configure_dev.sh"
Browse files Browse the repository at this point in the history
This reverts commit 578889a.
  • Loading branch information
onetechnical committed Sep 18, 2024
1 parent 578889a commit 02a5501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/configure_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ function install_or_upgrade {
BREW_FORCE="-f"
fi
if brew ls --versions "$1" >/dev/null; then
brew upgrade ${BREW_FORCE} "$1" || true
HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade ${BREW_FORCE} "$1" || true
else
brew install ${BREW_FORCE} "$1"
HOMEBREW_NO_AUTO_UPDATE=1 brew install ${BREW_FORCE} "$1"
fi
}

Expand Down

0 comments on commit 02a5501

Please sign in to comment.