We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 139252f commit 67a75a6Copy full SHA for 67a75a6
1 file changed
configs/components/_base-rubygem.rb
@@ -45,6 +45,6 @@
45
# If we are installing a newer version of a default gem, we need to remove the existing
46
# specification file so that we don't get warnings. The corresponding gem directory is
47
# usually empty and only there for compatibility reasons, so we remove that too to avoid confusion.
48
- steps << "rm --verbose -f #{settings[:gem_home]}/specifications/default/#{name}-*.gemspec"
49
- steps << "rm --verbose -rf #{settings[:gem_home]}/gems/#{name}-*[!#{version}]"
+ steps << "rm -fv #{settings[:gem_home]}/specifications/default/#{name}-*.gemspec"
+ steps << "rm -rfv #{settings[:gem_home]}/gems/#{name}-*[!#{version}]"
50
end
0 commit comments