blob: d964fa1a9b39bdc7e2316c3112b91b09c2d862e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#: * `command` <cmd>:
#: Display the path to the file which is used when invoking `brew` <cmd>.
require "commands"
module Homebrew
module_function
def command
abort "This command requires a command argument" if ARGV.empty?
cmd = HOMEBREW_INTERNAL_COMMAND_ALIASES.fetch(ARGV.first, ARGV.first)
path = Commands.path(cmd)
cmd_paths = PATH.new(ENV["PATH"]).append(Tap.cmd_directories) unless path
path ||= which("brew-#{cmd}", cmd_paths)
path ||= which("brew-#{cmd}.rb", cmd_paths)
odie "Unknown command: #{cmd}" unless path
puts path
end
end
|