mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
11 lines
239 B
Ruby
11 lines
239 B
Ruby
class Cask::CLI::Update < Cask::CLI::Base
|
|
def self.run(*_ignored)
|
|
ARGV.clear
|
|
require HOMEBREW_REPOSITORY.join("Library/Homebrew/cmd/update")
|
|
Homebrew::update
|
|
end
|
|
|
|
def self.help
|
|
"a synonym for 'brew update'"
|
|
end
|
|
end
|