aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/cmd/brew-cask.rb
blob: 825c4cb8181c050a7ca9e4749dc6f0f28997a0f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require "pathname"

$LOAD_PATH.unshift(File.expand_path("../../lib", Pathname.new(__FILE__).realpath))

require "hbc"

begin
  Hbc::CLI.process(ARGV)
rescue Interrupt
  puts
  exit 130
end