aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd/audit.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-09-04 01:54:28 +0100
committerGitHub2017-09-04 01:54:28 +0100
commit73cd2a1db885d25fc5d91bc7d7aab6518d5c97c7 (patch)
tree8685425fdac43cebca2ac031a88a1377bbd39638 /Library/Homebrew/dev-cmd/audit.rb
parent37293c6f01e24ccef6b4c94ed37478d88bc4a173 (diff)
parentbbf71921eb2b2cce5072bb615fac3a2bc96fcfc7 (diff)
downloadbrew-73cd2a1db885d25fc5d91bc7d7aab6518d5c97c7.tar.bz2
Merge pull request #3119 from MikeMcQuaid/audit-subversion-url-fix
audit: fix subversion remote check logic.
Diffstat (limited to 'Library/Homebrew/dev-cmd/audit.rb')
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index 3ba27b5d4..d089f308d 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -1260,7 +1260,7 @@ class ResourceAuditor
elsif strategy <= SubversionDownloadStrategy
next unless DevelopmentTools.subversion_handles_most_https_certificates?
next unless Utils.svn_available?
- if Utils.svn_remote_exists url
+ unless Utils.svn_remote_exists url
problem "The URL #{url} is not a valid svn URL"
end
end