Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Library/Homebrew/dev-cmd/contributions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ class Contributions < AbstractCommand
description: "Date (ISO 8601 format) to stop searching contributions."
switch "--csv",
description: "Print a CSV of contributions across repositories over the time period."
switch "--force",
description: "Force the installation of missing taps."
conflicts "--organisation", "--repositories"
conflicts "--organisation", "--team"
conflicts "--user", "--team"
Expand Down Expand Up @@ -236,7 +234,7 @@ def scan_repositories(organisation, repositories, person, from:, to:)
repository_path, tap = repository_path_and_tap(repository)
if repository_path && tap && !repository_path.exist?
opoo "Repository #{repository} not yet tapped! Tapping it now..."
tap.install(force: args.force?)
tap.install(force: true)
end

repository_full_name = tap&.full_name
Expand Down
1 change: 0 additions & 1 deletion completions/bash/brew
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,6 @@ _brew_contributions() {
__brewcomp "
--csv
--debug
--force
--from
--help
--organisation
Expand Down
1 change: 0 additions & 1 deletion completions/fish/brew.fish
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,6 @@ __fish_brew_complete_arg 'config' -l verbose -d 'Make some output more verbose'
__fish_brew_complete_cmd 'contributions' 'Summarise contributions to Homebrew repositories'
__fish_brew_complete_arg 'contributions' -l csv -d 'Print a CSV of contributions across repositories over the time period'
__fish_brew_complete_arg 'contributions' -l debug -d 'Display any debugging information'
__fish_brew_complete_arg 'contributions' -l force -d 'Force the installation of missing taps'
__fish_brew_complete_arg 'contributions' -l from -d 'Date (ISO 8601 format) to start searching contributions. Omitting this flag searches the past year'
__fish_brew_complete_arg 'contributions' -l help -d 'Show this message'
__fish_brew_complete_arg 'contributions' -l organisation -d 'Specify the organisation to populate sources repositories from. Omitting this flag searches the Homebrew primary repositories'
Expand Down
1 change: 0 additions & 1 deletion completions/zsh/_brew
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,6 @@ _brew_contributions() {
_arguments \
'--csv[Print a CSV of contributions across repositories over the time period]' \
'--debug[Display any debugging information]' \
'--force[Force the installation of missing taps]' \
'--from[Date (ISO 8601 format) to start searching contributions. Omitting this flag searches the past year]' \
'--help[Show this message]' \
'(--repositories --team)--organisation[Specify the organisation to populate sources repositories from. Omitting this flag searches the Homebrew primary repositories]' \
Expand Down
4 changes: 0 additions & 4 deletions docs/Manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2444,10 +2444,6 @@ Summarise contributions to Homebrew repositories.

: Print a CSV of contributions across repositories over the time period.

`--force`

: Force the installation of missing taps.

### `create` \[*`options`*\] *`URL`*

Generate a formula or, with `--cask`, a cask for the downloadable file at
Expand Down
3 changes: 0 additions & 3 deletions manpages/brew.1
Original file line number Diff line number Diff line change
Expand Up @@ -1531,9 +1531,6 @@ Date (ISO 8601 format) to stop searching contributions\.
.TP
\fB\-\-csv\fP
Print a CSV of contributions across repositories over the time period\.
.TP
\fB\-\-force\fP
Force the installation of missing taps\.
.SS "\fBcreate\fP \fR[\fIoptions\fP] \fIURL\fP"
Generate a formula or, with \fB\-\-cask\fP, a cask for the downloadable file at \fIURL\fP and open it in the editor\. Homebrew will attempt to automatically derive the formula name and version, but if it fails, you\[u2019]ll have to make your own template\. The \fBwget\fP formula serves as a simple example\. For the complete API, see:
.UR https://rubydoc\.brew\.sh/Formula
Expand Down
Loading