1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge RubyGems-3.2.15 and Bundler-2.2.15 (#4311)

This commit is contained in:
Hiroshi SHIBATA 2021-03-24 04:52:19 +09:00 committed by GitHub
parent ff2ea4daeb
commit 2efda212b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 194 additions and 18 deletions

View file

@ -82,7 +82,9 @@ module Bundler
end
def install(spec, options = {})
print_using_message "Using #{version_message(spec)} from #{self}"
using_message = "Using #{version_message(spec)} from #{self}"
using_message += " and installing its executables" unless spec.executables.empty?
print_using_message using_message
generate_bin(spec, :disable_extensions => true)
nil # no post-install message
end