diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-11-01 02:02:10 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-11-01 02:33:11 +0900 |
commit | 4bcfff07ab3dc8e6e66f3eeebdebb276f65412b0 (patch) | |
tree | 4c9a31a0c13075f749d02c798842d958c0521928 | |
parent | eedb9ac7b80ab6005ee7ca099f6dee464a8be93a (diff) |
Remove debug print
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11969
-rw-r--r-- | tool/test-bundled-gems.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index e200e9b5df..7ccf872f59 100644 --- a/tool/test-bundled-gems.rb +++ b/tool/test-bundled-gems.rb @@ -61,7 +61,6 @@ File.foreach("#{gem_dir}/bundled_gems") do |line| if load_path libs = IO.popen([ruby, "-e", "old = $:.dup; require '#{toplib}'; puts $:-old"], &:read) next unless $?.success? - puts libs ENV["RUBYLIB"] = [libs.split("\n"), rubylib].join(File::PATH_SEPARATOR) else ENV["RUBYLIB"] = rubylib |