20 lines
327 B
Ruby
Raw Normal View History

2017-05-20 19:08:03 +02:00
require "cask/lib/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 self.run(*_ignored)
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