Skip to content

Commit

Permalink
Prevent bundler 2.5.19
Browse files Browse the repository at this point in the history
bundler 2.5.19 introduced an issue where bundler/inline would
accidentally overwrite lockfiles. This impacts the release builds
because it tries to write to a location it does not have access to. This
was fixed in bundler 2.5.20
  • Loading branch information
Fryguy committed Sep 24, 2024
1 parent cd852d1 commit 6d94d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gem "awesome_spawn", "~>1.6", :require => false
gem "aws-sdk-s3", "~>1.0", :require => false # For FileDepotS3
gem "bcrypt", "~> 3.1.10", :require => false
gem "bootsnap", ">= 1.8.1", :require => false # for psych 3.3.2+ / 4 unsafe_load
gem "bundler", "~> 2.2", ">= 2.2.15", *("!= 2.5.0".."!= 2.5.9"), :require => false
gem "bundler", "~> 2.2", ">= 2.2.15", *("!= 2.5.0".."!= 2.5.9"), "!= 2.5.19", :require => false
gem "byebug", :require => false
gem "color", "~>1.8"
gem "config", "~>2.2", ">=2.2.3", :require => false
Expand Down

0 comments on commit 6d94d73

Please sign in to comment.