aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2016-08-17 09:09:55 +0100
committerMike McQuaid2016-08-17 09:11:11 +0100
commit135ecd1295cdcbb1500ec2216d37f00e485130f8 (patch)
tree15c41fac65e1d1edca4e31ed43bc3e62561362ac /Library/Homebrew/cmd
parent89687fe122e4262976ffce3c04ed617e485881e8 (diff)
downloadbrew-135ecd1295cdcbb1500ec2216d37f00e485130f8.tar.bz2
Prepare for Homebrew Cask to be imported.
- ignore Cask's files in `readall` (for now, there's an intentional syntax error that will need fixed) - run Cask's tests if they exist - don't check Cask's files in coverage reports (for now)
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/readall.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/readall.rb b/Library/Homebrew/cmd/readall.rb
index e399e7c2b..62cdfa5d4 100644
--- a/Library/Homebrew/cmd/readall.rb
+++ b/Library/Homebrew/cmd/readall.rb
@@ -15,6 +15,7 @@ module Homebrew
]
Dir.glob(scan_files).each do |rb|
next if rb.include?("/vendor/")
+ next if rb.include?("/cask/")
ruby_files << rb
end