Updating env and option, now using --install-ask

This commit is contained in:
thibhero 2025-02-07 13:57:51 -05:00
parent bbd8aeb80f
commit f3c2d27cd0
2 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@ module Homebrew
"trying any other/default URLs.", "trying any other/default URLs.",
boolean: true, boolean: true,
}, },
HOMEBREW_ASK: { HOMEBREW_INSTALL_ASK: {
description: "If set, pass `--ask`to all formula install commands.", description: "If set, pass `--install-ask`to all formula install commands.",
boolean: true, boolean: true,
}, },
HOMEBREW_AUTO_UPDATE_SECS: { HOMEBREW_AUTO_UPDATE_SECS: {

View File

@ -317,6 +317,6 @@ module Homebrew::EnvConfig
def verify_attestations?; end def verify_attestations?; end
sig { returns(T::Boolean) } sig { returns(T::Boolean) }
def ask?; end def install_ask?; end
end end
end end