From aa311d83fb6093495d22015223ab2c198034ba6b Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Mon, 18 Mar 2024 15:23:16 +0100 Subject: [PATCH] chore: Make init uses bundle install (#3756) Make init now uses bundle install, which installs the gems specified in the gemfile, instead of bundle update, which updates the gems to the latest version specified in the gemfile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f92d73034cc..70717268578 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ init: setup-git brew bundle rbenv install --skip-existing rbenv exec gem update bundler - rbenv exec bundle update + rbenv exec bundle install .PHONY: setup-git setup-git: