From 1c703905fe3c45a935dd7a9d4e776bdf8faeec3a Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Wed, 7 Jan 2026 12:44:28 +1100 Subject: [PATCH] Remove now redundant install of bundler --- bin/setup | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index 52411f7240..ab04dc5d62 100755 --- a/bin/setup +++ b/bin/setup @@ -16,7 +16,10 @@ FileUtils.chdir APP_ROOT do # Add necessary setup steps to this file. puts "== Installing dependencies ==" - system! "script/install-bundler" + + # Bundler comes as default gem these days. + # system! "script/install-bundler" + # # Check first (it's quicker), then install new gems if necessary system("bundle check 2> /dev/null") || system!(BUNDLE_ENV, "bundle install")