Skip to content

Commit

Permalink
Remove homebrew autoupdate deactivation from configure_dev.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
onetechnical committed Sep 18, 2024
1 parent d2c6455 commit 578889a
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
HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade ${BREW_FORCE} "$1" || true
brew upgrade ${BREW_FORCE} "$1" || true
else
HOMEBREW_NO_AUTO_UPDATE=1 brew install ${BREW_FORCE} "$1"
brew install ${BREW_FORCE} "$1"
fi
}

Expand Down

0 comments on commit 578889a

Please sign in to comment.