Rename --quieter args to --quiet.
This commit is contained in:
parent
1f9563f4bc
commit
ecce70bc32
@ -35,7 +35,7 @@ module Homebrew
|
|||||||
description: "Migrate tapped formulae from symlink-based to directory-based structure."
|
description: "Migrate tapped formulae from symlink-based to directory-based structure."
|
||||||
switch "--list-pinned",
|
switch "--list-pinned",
|
||||||
description: "List all pinned taps."
|
description: "List all pinned taps."
|
||||||
switch "-q", "--quieter",
|
switch :quiet,
|
||||||
description: "Suppress any warnings."
|
description: "Suppress any warnings."
|
||||||
switch :debug
|
switch :debug
|
||||||
max_named 2
|
max_named 2
|
||||||
@ -57,7 +57,7 @@ module Homebrew
|
|||||||
tap.install clone_target: ARGV.named.second,
|
tap.install clone_target: ARGV.named.second,
|
||||||
force_auto_update: force_auto_update?,
|
force_auto_update: force_auto_update?,
|
||||||
full_clone: full_clone?,
|
full_clone: full_clone?,
|
||||||
quiet: Homebrew.args.quieter?
|
quiet: Homebrew.args.quiet?
|
||||||
rescue TapRemoteMismatchError => e
|
rescue TapRemoteMismatchError => e
|
||||||
odie e
|
odie e
|
||||||
rescue TapAlreadyTappedError
|
rescue TapAlreadyTappedError
|
||||||
|
|||||||
@ -42,7 +42,7 @@ class FormulaInstaller
|
|||||||
mode_attr_accessor :show_summary_heading, :show_header
|
mode_attr_accessor :show_summary_heading, :show_header
|
||||||
mode_attr_accessor :build_from_source, :force_bottle, :include_test
|
mode_attr_accessor :build_from_source, :force_bottle, :include_test
|
||||||
mode_attr_accessor :ignore_deps, :only_deps, :interactive, :git
|
mode_attr_accessor :ignore_deps, :only_deps, :interactive, :git
|
||||||
mode_attr_accessor :verbose, :debug, :quieter
|
mode_attr_accessor :verbose, :debug, :quiet
|
||||||
|
|
||||||
def initialize(formula)
|
def initialize(formula)
|
||||||
@formula = formula
|
@formula = formula
|
||||||
@ -57,7 +57,7 @@ class FormulaInstaller
|
|||||||
@interactive = false
|
@interactive = false
|
||||||
@git = false
|
@git = false
|
||||||
@verbose = Homebrew.args.verbose?
|
@verbose = Homebrew.args.verbose?
|
||||||
@quieter = Homebrew.args.quieter?
|
@quiet = Homebrew.args.quiet?
|
||||||
@debug = ARGV.debug?
|
@debug = ARGV.debug?
|
||||||
@installed_as_dependency = false
|
@installed_as_dependency = false
|
||||||
@installed_on_request = true
|
@installed_on_request = true
|
||||||
@ -589,7 +589,7 @@ class FormulaInstaller
|
|||||||
fi.build_from_source = ARGV.build_formula_from_source?(df)
|
fi.build_from_source = ARGV.build_formula_from_source?(df)
|
||||||
fi.force_bottle = false
|
fi.force_bottle = false
|
||||||
fi.verbose = verbose?
|
fi.verbose = verbose?
|
||||||
fi.quieter = quieter?
|
fi.quiet = quiet?
|
||||||
fi.debug = debug?
|
fi.debug = debug?
|
||||||
fi.link_keg ||= keg_was_linked if keg_had_linked_keg
|
fi.link_keg ||= keg_was_linked if keg_had_linked_keg
|
||||||
fi.installed_as_dependency = true
|
fi.installed_as_dependency = true
|
||||||
|
|||||||
@ -504,8 +504,6 @@ HTTPS, e.g. SSH, GIT, HTTP, FTP(S), RSYNC.
|
|||||||
Migrate tapped formulae from symlink-based to directory-based structure.
|
Migrate tapped formulae from symlink-based to directory-based structure.
|
||||||
* `--list-pinned`:
|
* `--list-pinned`:
|
||||||
List all pinned taps.
|
List all pinned taps.
|
||||||
* `-q`, `--quieter`:
|
|
||||||
Suppress any warnings.
|
|
||||||
|
|
||||||
### `tap-info` [*`options`*] [*`tap`*]
|
### `tap-info` [*`options`*] [*`tap`*]
|
||||||
|
|
||||||
|
|||||||
@ -641,10 +641,6 @@ Migrate tapped formulae from symlink\-based to directory\-based structure\.
|
|||||||
\fB\-\-list\-pinned\fR
|
\fB\-\-list\-pinned\fR
|
||||||
List all pinned taps\.
|
List all pinned taps\.
|
||||||
.
|
.
|
||||||
.TP
|
|
||||||
\fB\-q\fR, \fB\-\-quieter\fR
|
|
||||||
Suppress any warnings\.
|
|
||||||
.
|
|
||||||
.SS "\fBtap\-info\fR [\fIoptions\fR] [\fItap\fR]"
|
.SS "\fBtap\-info\fR [\fIoptions\fR] [\fItap\fR]"
|
||||||
Show detailed information about one or more \fItap\fRs\.
|
Show detailed information about one or more \fItap\fRs\.
|
||||||
.
|
.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user