diff options
| author | Steven Peters | 2017-04-19 10:59:11 -0700 |
|---|---|---|
| committer | Steven Peters | 2017-04-19 10:59:11 -0700 |
| commit | 3982d24d8b712ea6a3d50e7e571a4efab6a52129 (patch) | |
| tree | 272c936f8305c9347adaee4e06ae786f2c249395 | |
| parent | b6b98f486e8647bb25427a3e080c3dd8d266a9e2 (diff) | |
| download | brew-3982d24d8b712ea6a3d50e7e571a4efab6a52129.tar.bz2 | |
audit: fix swapped audit messages
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 8910c6af3..4871cc8b2 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -1100,11 +1100,11 @@ class FormulaAuditor end if line =~ /(not\s|!)\s*build\.with?\?/ - problem "Don't negate 'build.without?': use 'build.with?'" + problem "Don't negate 'build.with?': use 'build.without?'" end if line =~ /(not\s|!)\s*build\.without?\?/ - problem "Don't negate 'build.with?': use 'build.without?'" + problem "Don't negate 'build.without?': use 'build.with?'" end if line =~ /ARGV\.(?!(debug\?|verbose\?|value[\(\s]))/ |
