20 lines
302 B
Ruby
Raw Normal View History

require "hbc/cli/abstract_command"
2016-12-16 19:40:10 +01:00
module Hbc
class CLI
2018-05-18 13:35:41 +02:00
module Compat
class Update < AbstractCommand
def run
2018-05-18 13:35:41 +02:00
odisabled "`brew cask update`", "`brew update`"
end
2016-12-16 19:40:10 +01:00
2018-05-18 13:35:41 +02:00
def self.visible
false
end
2016-12-30 16:46:27 +01:00
end
2016-12-16 19:40:10 +01:00
end
2018-05-18 13:35:41 +02:00
prepend Compat
2016-12-16 19:40:10 +01:00
end
end