diff options
| author | Adam Vandenberg | 2010-08-07 15:36:54 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-07 18:08:48 -0700 |
| commit | af05de5eded4eda093e34665bbf64ab1bd64f279 (patch) | |
| tree | 36075d915013ac0acafd7d6176feb590f488a595 /Library | |
| parent | 6bf6623d5af9d303d0a867ab2fc2436da057b55e (diff) | |
| download | homebrew-af05de5eded4eda093e34665bbf64ab1bd64f279.tar.bz2 | |
Fix regex location
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/brew_doctor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/brew_doctor.rb b/Library/Homebrew/brew_doctor.rb index 643d0e89a..76177d068 100644 --- a/Library/Homebrew/brew_doctor.rb +++ b/Library/Homebrew/brew_doctor.rb @@ -318,7 +318,7 @@ def check_for_config_scripts paths = ENV['PATH'].split(':').collect{|p| File.expand_path p} paths.each do |p| next if ['/usr/bin', '/usr/sbin', '/usr/X11/bin', "#{HOMEBREW_PREFIX}/bin", "#{HOMEBREW_PREFIX}/sbin"].include? p - next if %r[^(#{real_cellar.to_s}|#{HOMEBREW_CELLAR.to_s})] =~ p + next if p =~ %r[^(#{real_cellar.to_s}|#{HOMEBREW_CELLAR.to_s})] configs = Dir["#{p}/*-config"] # puts "#{p}\n #{configs * ' '}" unless configs.empty? |
