Remove now redundant install of bundler

This commit is contained in:
Maikel Linke
2026-01-07 12:44:28 +11:00
parent feed223ab4
commit 1c703905fe

View File

@@ -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")