From 2b70ddf9c0d5286235405cee26d9a0e35b366a2c Mon Sep 17 00:00:00 2001 From: Nick Charlton Date: Tue, 17 Dec 2024 15:03:08 +0000 Subject: [PATCH] Fix BUNDLE_GEMFILE path for demo deployments In #2705, we upgraded Rails but didn't notice that we'd changed the path on where `BUNDLE_GEMFILE` is overridden in `config/boot.rb`. This was causing deployments to fail for the prerelease (which had also been broken for some time for other reasons), and blocking us releasing v1. Fixes #2715. --- spec/example_app/config/boot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/example_app/config/boot.rb b/spec/example_app/config/boot.rb index 282011619..473d401d0 100644 --- a/spec/example_app/config/boot.rb +++ b/spec/example_app/config/boot.rb @@ -1,3 +1,3 @@ -ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile", __dir__) require "bundler/setup" # Set up gems listed in the Gemfile.