aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-04-20 08:24:38 +0100
committerGitHub2017-04-20 08:24:38 +0100
commit29d750df719ae2a84042481b05d1b744fa6a6d42 (patch)
tree8de8e3e5fbc6663f8677d3830baa68200b395899 /Library
parenta264590201dac1c03c10cfef8f50a41aa14ecd18 (diff)
parent3982d24d8b712ea6a3d50e7e571a4efab6a52129 (diff)
downloadbrew-29d750df719ae2a84042481b05d1b744fa6a6d42.tar.bz2
Merge pull request #2509 from scpeters/audit_message_swap
audit: fix swapped audit messages
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb4
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]))/