Skip to content

Commit

Permalink
Fix BUNDLE_GEMFILE path for demo deployments (#2728)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nickcharlton authored Dec 17, 2024
1 parent 9d4b36e commit 1dd32ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/example_app/config/boot.rb
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 1dd32ac

Please sign in to comment.