diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-12-16 18:00:42 +0800 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-12-16 21:02:45 +0900 |
| commit | ab87cd0baa884797b608013de24ab645cd38999f (patch) | |
| tree | b7a5810d1ab5b748f08b6e094ac7ed380c861f60 | |
| parent | ad2a38dce4ac2e28c825080f4724d0ffed805e16 (diff) | |
We don't use tracked_files in before(:suite). It breaks with release package.
| -rw-r--r-- | spec/bundler/support/path.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/support/path.rb b/spec/bundler/support/path.rb index 9b5bdfae54..bb1ac2454d 100644 --- a/spec/bundler/support/path.rb +++ b/spec/bundler/support/path.rb @@ -80,7 +80,7 @@ module Spec end def shipped_files - @shipped_files ||= ruby_core? ? tracked_files : loaded_gemspec.files + @shipped_files ||= ruby_core? ? (loaded_gemspec.files - ["exe/bundle", "exe/bundler"] + ["libexec/bundle", "libexec/bundler"]) : loaded_gemspec.files end def lib_tracked_files |
