Skip to content

Commit 20cf460

Browse files
committed
Fix messages for skipped bundled gems
1 parent 1605704 commit 20cf460

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tool/rbinstall.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,8 @@ class << (w = [])
11871187
skipped.default = "not found in bundled_gems"
11881188
puts "skipped bundled gems:"
11891189
gems.each do |gem|
1190-
printf " %-32s%s\n", File.basename(gem), skipped[gem]
1190+
gem = File.basename(gem)
1191+
printf " %-31s %s\n", gem, skipped[gem.chomp(".gem")]
11911192
end
11921193
end
11931194
end

0 commit comments

Comments
 (0)