From 07c05a3c6f79e909d88025842565e18a6aea7374 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 11 Jan 2023 18:29:04 +0000 Subject: [PATCH] fix(deps): use --no-upgrade option on brew bundle commands This ensures a more restrictive install of homebrew dependencies. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a3351b1..03c221b 100644 --- a/Makefile +++ b/Makefile @@ -49,10 +49,10 @@ bootstrap: bootstrap-brew bootstrap-ci: bootstrap-brew bootstrap-brew-ci bootstrap-pip bootstrap-brew: - brew bundle + brew bundle --no-upgrade bootstrap-brew-ci: - brew bundle --file Brewfile.ci + brew bundle --file Brewfile.ci --no-upgrade bootstrap-pip: $(PIP) install -r requirements-ci.txt