mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Update manpage and completions.
Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml) workflow.
This commit is contained in:
parent
584588afb4
commit
88085ce55b
@ -1619,6 +1619,22 @@ _brew_pin() {
|
||||
__brew_complete_installed_formulae
|
||||
}
|
||||
|
||||
_brew_postgresql_upgrade_database() {
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
case "${cur}" in
|
||||
-*)
|
||||
__brewcomp "
|
||||
--debug
|
||||
--help
|
||||
--quiet
|
||||
--verbose
|
||||
"
|
||||
return
|
||||
;;
|
||||
*) ;;
|
||||
esac
|
||||
}
|
||||
|
||||
_brew_postinstall() {
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
case "${cur}" in
|
||||
@ -2640,6 +2656,7 @@ _brew() {
|
||||
options) _brew_options ;;
|
||||
outdated) _brew_outdated ;;
|
||||
pin) _brew_pin ;;
|
||||
postgresql-upgrade-database) _brew_postgresql_upgrade_database ;;
|
||||
postinstall) _brew_postinstall ;;
|
||||
pr-automerge) _brew_pr_automerge ;;
|
||||
pr-publish) _brew_pr_publish ;;
|
||||
|
@ -1122,6 +1122,13 @@ __fish_brew_complete_arg 'pin' -l verbose -d 'Make some output more verbose'
|
||||
__fish_brew_complete_arg 'pin' -a '(__fish_brew_suggest_formulae_installed)'
|
||||
|
||||
|
||||
__fish_brew_complete_cmd 'postgresql-upgrade-database' 'Upgrades the database for the `postgresql` formula'
|
||||
__fish_brew_complete_arg 'postgresql-upgrade-database' -l debug -d 'Display any debugging information'
|
||||
__fish_brew_complete_arg 'postgresql-upgrade-database' -l help -d 'Show this message'
|
||||
__fish_brew_complete_arg 'postgresql-upgrade-database' -l quiet -d 'Make some output more quiet'
|
||||
__fish_brew_complete_arg 'postgresql-upgrade-database' -l verbose -d 'Make some output more verbose'
|
||||
|
||||
|
||||
__fish_brew_complete_cmd 'postinstall' 'Rerun the post-install steps for formula'
|
||||
__fish_brew_complete_arg 'postinstall' -l debug -d 'Display any debugging information'
|
||||
__fish_brew_complete_arg 'postinstall' -l help -d 'Show this message'
|
||||
|
@ -67,6 +67,7 @@ nodenv-sync
|
||||
options
|
||||
outdated
|
||||
pin
|
||||
postgresql-upgrade-database
|
||||
postinstall
|
||||
pr-automerge
|
||||
pr-publish
|
||||
|
@ -188,6 +188,7 @@ __brew_internal_commands() {
|
||||
'options:Show install options specific to formula'
|
||||
'outdated:List installed casks and formulae that have an updated version available'
|
||||
'pin:Pin the specified formula, preventing them from being upgraded when issuing the `brew upgrade` formula command'
|
||||
'postgresql-upgrade-database:Upgrades the database for the `postgresql` formula'
|
||||
'postinstall:Rerun the post-install steps for formula'
|
||||
'pr-automerge:Find pull requests that can be automatically merged using `brew pr-publish`'
|
||||
'pr-publish:Publish bottles for a pull request with GitHub Actions'
|
||||
@ -1375,6 +1376,15 @@ _brew_pin() {
|
||||
'*::installed_formula:__brew_installed_formulae'
|
||||
}
|
||||
|
||||
# brew postgresql-upgrade-database
|
||||
_brew_postgresql_upgrade_database() {
|
||||
_arguments \
|
||||
'--debug[Display any debugging information]' \
|
||||
'--help[Show this message]' \
|
||||
'--quiet[Make some output more quiet]' \
|
||||
'--verbose[Make some output more verbose]'
|
||||
}
|
||||
|
||||
# brew postinstall
|
||||
_brew_postinstall() {
|
||||
_arguments \
|
||||
|
@ -517,6 +517,10 @@ information is displayed in interactive shells, and suppressed otherwise.
|
||||
Pin the specified *`formula`*, preventing them from being upgraded when
|
||||
issuing the `brew upgrade` *`formula`* command. See also `unpin`.
|
||||
|
||||
### `postgresql-upgrade-database`
|
||||
|
||||
Upgrades the database for the `postgresql` formula.
|
||||
|
||||
### `postinstall` *`installed_formula`* [...]
|
||||
|
||||
Rerun the post-install steps for *`formula`*.
|
||||
|
@ -719,6 +719,9 @@ Also include outdated casks including those with \fBauto_updates true\fR\.
|
||||
.SS "\fBpin\fR \fIinstalled_formula\fR [\.\.\.]"
|
||||
Pin the specified \fIformula\fR, preventing them from being upgraded when issuing the \fBbrew upgrade\fR \fIformula\fR command\. See also \fBunpin\fR\.
|
||||
.
|
||||
.SS "\fBpostgresql\-upgrade\-database\fR"
|
||||
Upgrades the database for the \fBpostgresql\fR formula\.
|
||||
.
|
||||
.SS "\fBpostinstall\fR \fIinstalled_formula\fR [\.\.\.]"
|
||||
Rerun the post\-install steps for \fIformula\fR\.
|
||||
.
|
||||
|
Loading…
x
Reference in New Issue
Block a user