20 lines
502 B
Ruby
Raw Normal View History

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 |*|
opoo <<-EOS.undent
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