diff options
Diffstat (limited to 'Library/Homebrew/dev-cmd')
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index c134441b2..9b14dc89c 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -1052,8 +1052,12 @@ class FormulaAuditor        problem "#{$2} modules should be vendored rather than use deprecated `depends_on \"#{$1}\" => :#{$2}#{$3}`"      end -    if line =~ /depends_on\s+['"](.+)['"]\s+=>\s+.*(?<!\?[( ])['"](.+)['"]/ -      problem "Dependency #{$1} should not use option #{$2}" +    if line =~ /depends_on\s+['"](.+)['"]\s+=>\s+(.*)/ +      dep = $1 +      $2.split(" ").map do |o| +        next unless o =~ /^\[?['"](.*)['"]/ +        problem "Dependency #{dep} should not use option #{$1}" +      end      end      # Commented-out depends_on  | 
