[rubygems/rubygems] Fix missing 'msg' parameter in Shell#no?

ffe89a099a
This commit is contained in:
Matt Brictson 2024-08-22 17:12:32 -07:00 committed by git
parent 4ede15fb53
commit cfad1f95d5
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ module Bundler
@shell.yes?(msg)
end
def no?
def no?(msg)
@shell.no?(msg)
end

View file

@ -60,7 +60,7 @@ module Bundler
raise "Cannot ask yes? with a silent shell"
end
def no?
def no?(msg)
raise "Cannot ask no? with a silent shell"
end