We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 139252f + 67a75a6 commit 1cea03cCopy full SHA for 1cea03c
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