Fix regex location

This commit is contained in:
Adam Vandenberg 2010-08-07 15:36:54 -07:00
parent 73125f1c18
commit 0321acf9be

View File

@ -318,7 +318,7 @@ def check_for_config_scripts
paths = ENV['PATH'].split(':').collect{|p| File.expand_path p} paths = ENV['PATH'].split(':').collect{|p| File.expand_path p}
paths.each do |p| paths.each do |p|
next if ['/usr/bin', '/usr/sbin', '/usr/X11/bin', "#{HOMEBREW_PREFIX}/bin", "#{HOMEBREW_PREFIX}/sbin"].include? 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"] configs = Dir["#{p}/*-config"]
# puts "#{p}\n #{configs * ' '}" unless configs.empty? # puts "#{p}\n #{configs * ' '}" unless configs.empty?