aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-11 17:49:27 +0100
committerMike McQuaid2016-09-11 17:49:27 +0100
commitf421374af1c70880e8e3abf0362f3efb55f62baf (patch)
tree0271249ef2890ca0a02dd0913ecdaed1032235b1 /Library
parentecda1c9c54bce43803236fdf1d92ce452905e9be (diff)
downloadbrew-f421374af1c70880e8e3abf0362f3efb55f62baf.tar.bz2
os/mac/sdk: fix Rubocop warnings.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac/sdk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/sdk.rb b/Library/Homebrew/os/mac/sdk.rb
index bb943bb34..a4eba815d 100644
--- a/Library/Homebrew/os/mac/sdk.rb
+++ b/Library/Homebrew/os/mac/sdk.rb
@@ -24,7 +24,7 @@ module OS
def latest_sdk
return if sdk_paths.empty?
- v, path = sdk_paths.max {|a, b| OS::Mac::Version.new(a[0]) <=> OS::Mac::Version.new(b[0])}
+ v, path = sdk_paths.max { |a, b| OS::Mac::Version.new(a[0]) <=> OS::Mac::Version.new(b[0]) }
SDK.new v, path
end