21 lines
325 B
Ruby
Raw Normal View History

2018-09-03 20:17:29 +01:00
require "cask/cmd/abstract_command"
require "cmd/search"
2018-09-06 08:29:14 +02:00
module Cask
2018-09-04 08:45:48 +01:00
class Cmd
module Compat
class Search < AbstractCommand
def run
odisabled "`brew cask search`", "`brew search`"
end
def self.visible
false
end
end
end
prepend Compat
end
end