77 lines
2.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-04-17 18:25:08 +09:00
require "cli/parser"
2018-11-10 22:36:30 +05:30
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
2018-11-10 22:36:30 +05:30
def tap_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`tap` [<options>] <user>`/`<repo> [<URL>]
Tap a formula repository.
If no arguments are provided, list all installed taps.
2018-11-10 22:36:30 +05:30
2019-08-06 14:22:24 -04:00
With <URL> unspecified, tap a formula repository from GitHub using HTTPS.
2018-11-10 22:36:30 +05:30
Since so many taps are hosted on GitHub, this command is a shortcut for
`brew tap` <user>`/`<repo> `https://github.com/`<user>`/homebrew-`<repo>.
2019-08-06 14:22:24 -04:00
With <URL> specified, tap a formula repository from anywhere, using
2019-08-06 14:20:27 -04:00
any transport protocol that `git`(1) handles. The one-argument form of `tap`
2018-11-10 22:36:30 +05:30
simplifies but also limits. This two-argument command makes no
assumptions, so taps can be cloned from places other than GitHub and
2019-08-06 14:22:24 -04:00
using protocols other than HTTPS, e.g. SSH, GIT, HTTP, FTP(S), RSYNC.
2018-11-10 22:36:30 +05:30
EOS
switch "--full",
2019-04-30 08:44:35 +01:00
description: "Use a full clone when tapping a repository. By default, the repository is "\
"cloned as a shallow copy (`--depth=1`). To convert a shallow copy to a "\
2019-08-06 14:22:24 -04:00
"full copy, you can retap by passing `--full` without first untapping."
2018-11-10 22:36:30 +05:30
switch "--force-auto-update",
2019-04-30 08:44:35 +01:00
description: "Auto-update tap even if it is not hosted on GitHub. By default, only taps "\
"hosted on GitHub are auto-updated (for performance reasons)."
2018-11-10 22:36:30 +05:30
switch "--repair",
2019-04-30 08:44:35 +01:00
description: "Migrate tapped formulae from symlink-based to directory-based structure."
2018-11-10 22:36:30 +05:30
switch "--list-pinned",
2019-04-30 08:44:35 +01:00
description: "List all pinned taps."
2018-11-10 22:36:30 +05:30
switch "-q", "--quieter",
2019-04-30 08:44:35 +01:00
description: "Suppress any warnings."
2018-11-10 22:36:30 +05:30
switch :debug
max_named 2
2018-11-10 22:36:30 +05:30
end
end
2012-03-02 20:28:54 +00:00
def tap
2018-11-10 22:36:30 +05:30
tap_args.parse
if args.repair?
Tap.each(&:link_completions_and_manpages)
2018-11-10 22:36:30 +05:30
elsif args.list_pinned?
2015-08-21 12:33:33 +08:00
puts Tap.select(&:pinned?).map(&:name)
elsif ARGV.named.empty?
puts Tap.names
2012-03-02 20:28:54 +00:00
else
2018-09-17 19:44:12 +02:00
tap = Tap.fetch(ARGV.named.first)
2015-11-10 18:33:57 +08:00
begin
2018-11-02 17:18:07 +00:00
tap.install clone_target: ARGV.named.second,
force_auto_update: force_auto_update?,
2018-11-02 17:18:07 +00:00
full_clone: full_clone?,
2018-11-10 22:36:30 +05:30
quiet: args.quieter?
rescue TapRemoteMismatchError => e
odie e
2019-11-28 15:10:50 +00:00
rescue TapAlreadyTappedError, TapAlreadyUnshallowError # rubocop:disable Lint/SuppressedException
2015-11-10 09:12:25 +00:00
end
2012-03-02 20:28:54 +00:00
end
end
def full_clone?
2018-11-10 22:36:30 +05:30
args.full? || ARGV.homebrew_developer?
end
def force_auto_update?
# if no relevant flag is present, return nil, meaning "no change"
2018-11-10 22:36:30 +05:30
true if args.force_auto_update?
end
2012-03-16 12:49:09 +00:00
end