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-05-23 17:37:37 +02:00
|
|
|
option "--caskroom=PATH", (lambda do |value|
|
|
|
|
Hbc.caskroom = value
|
|
|
|
odeprecated "`brew cask` with the `--caskroom` flag", disable_on: Time.utc(2017, 10, 31)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|