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

[rubygems/rubygems] Remove --quiet flag to git checkout

Since we don't show this output by default, it's better to be verbose
in case we happen to need more info.

https://github.com/rubygems/rubygems/commit/baa4ccf5a6
This commit is contained in:
David Rodríguez 2020-06-21 14:56:33 +02:00 committed by Hiroshi SHIBATA
parent 23cf99e99d
commit 5ae80c5207
Notes: git 2020-07-15 16:05:56 +09:00

View file

@ -68,7 +68,7 @@ private
return unless local_copy_switch_needed?
sys_exec("git remote update", :dir => local_copy_path)
sys_exec("git checkout #{target_tag} --quiet", :dir => local_copy_path)
sys_exec("git checkout #{target_tag}", :dir => local_copy_path)
ENV["RGV"] = local_copy_path.to_s
end