2017-05-20 19:08:03 +02:00
|
|
|
require "cask/lib/hbc/cli/abstract_command"
|
2016-12-30 16:13:09 +01:00
|
|
|
|
2016-12-16 19:40:10 +01:00
|
|
|
module Hbc
|
|
|
|
class CLI
|
2017-05-20 19:08:03 +02:00
|
|
|
class Update < AbstractCommand
|
2016-12-16 19:40:10 +01:00
|
|
|
def self.run(*_ignored)
|
2018-05-17 19:13:37 +02:00
|
|
|
odisabled "`brew cask update`", "`brew update`"
|
2016-12-16 19:40:10 +01:00
|
|
|
end
|
|
|
|
|
2016-12-30 16:46:27 +01:00
|
|
|
def self.visible
|
|
|
|
false
|
|
|
|
end
|
2016-12-16 19:40:10 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|