From 2f0babae990f908d706f5f60dc4a11573918c23d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 13 May 2024 01:28:04 +0100 Subject: [PATCH] fix(bootstrap): remove --no-upgrade option from brew bundle It can easily lead to issues where certain packages are not compatible due to an older version already being installed. Hence we instead prefer to just update all deps to the latest version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e79abb5..3c4b4bb 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ bootstrap-ruby: bundle install bootstrap-brew: - brew bundle --verbose --no-upgrade + brew bundle --verbose bootstrap-pip: $(PIP) install -r requirements-ci.txt