30 lines
587 B
Ruby
30 lines
587 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cli/parser"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def __repository_args
|
|
Homebrew::CLI::Parser.new do
|
|
usage_banner <<~EOS
|
|
`--repository` [<user>`/`<repo>]
|
|
|
|
Display where Homebrew's `.git` directory is located.
|
|
|
|
If <user>`/`<repo> are provided, display where tap <user>`/`<repo>'s directory is located.
|
|
EOS
|
|
end
|
|
end
|
|
|
|
def __repository
|
|
__repository_args.parse
|
|
|
|
if ARGV.named.empty?
|
|
puts HOMEBREW_REPOSITORY
|
|
else
|
|
puts ARGV.named.map { |tap| Tap.fetch(tap).path }
|
|
end
|
|
end
|
|
end
|