2017-05-23 17:37:37 +02:00
|
|
|
require "cask/lib/hbc/cli/options"
|
|
|
|
|
|
|
|
module Hbc
|
|
|
|
class CLI
|
|
|
|
include Options
|
|
|
|
|
2017-05-24 02:46:23 +02:00
|
|
|
option "--binarydir=PATH", (lambda do |*|
|
2017-10-15 02:28:32 +02:00
|
|
|
opoo <<~EOS
|
2017-05-24 02:46:23 +02:00
|
|
|
Option --binarydir is obsolete!
|
|
|
|
Homebrew-Cask now uses the same location as your Homebrew installation for executable links.
|
|
|
|
EOS
|
|
|
|
end)
|
|
|
|
|
2017-12-03 10:10:54 +01:00
|
|
|
option "--caskroom=PATH", (lambda do |*|
|
2017-12-03 09:57:04 +01:00
|
|
|
odisabled "`brew cask` with the `--caskroom` flag"
|
2017-05-23 17:37:37 +02:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|