mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
302 B
Ruby
20 lines
302 B
Ruby
require "hbc/cli/abstract_command"
|
|
|
|
module Hbc
|
|
class CLI
|
|
module Compat
|
|
class Update < AbstractCommand
|
|
def run
|
|
odisabled "`brew cask update`", "`brew update`"
|
|
end
|
|
|
|
def self.visible
|
|
false
|
|
end
|
|
end
|
|
end
|
|
|
|
prepend Compat
|
|
end
|
|
end
|