Skip to content

Commit 278a93a

Browse files
committed
This change didn't fix the original issue.
Revert "Use base: with Dir.glob for bundler.gemspec" This reverts commit 87f0701.
1 parent 240e799 commit 278a93a

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/bundler/bundler.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ Gem::Specification.new do |s|
3434
# It should match the RubyGems version shipped with `required_ruby_version` above
3535
s.required_rubygems_version = ">= 3.4.1"
3636

37-
base = File.expand_path('../../..', __FILE__)
38-
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH, base: base).reject {|f| File.directory?(File.join(base, f)) }
37+
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
3938

4039
# include the gemspec itself because warbler breaks w/o it
4140
s.files += %w[lib/bundler/bundler.gemspec]

0 commit comments

Comments
 (0)