aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask
diff options
context:
space:
mode:
authorMarkus Reiter2017-03-06 17:37:37 +0100
committerGitHub2017-03-06 17:37:37 +0100
commit6be4aa850a4dec026f92acaed776f2b9260457e6 (patch)
tree7feca438db0b263b2d90bb77d7b760729e09b05e /Library/Homebrew/cask
parentd37f2e7ae7b6915063960998df16b3cf4f76115c (diff)
parent3e7f94d5b54799db72917b9c2d99f3e592c892a1 (diff)
downloadbrew-6be4aa850a4dec026f92acaed776f2b9260457e6.tar.bz2
Merge pull request #2275 from reitermarkus/cmd-cask
Move `cask` to `cmd/`.
Diffstat (limited to 'Library/Homebrew/cask')
-rwxr-xr-xLibrary/Homebrew/cask/cmd/brew-cask.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/Library/Homebrew/cask/cmd/brew-cask.rb b/Library/Homebrew/cask/cmd/brew-cask.rb
deleted file mode 100755
index 825c4cb81..000000000
--- a/Library/Homebrew/cask/cmd/brew-cask.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-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