diff options
| author | Jack Nagel | 2012-09-03 15:14:32 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-09-03 15:15:39 -0500 |
| commit | eb3c0cd2731d3622efb39a9b92e752a4c78adbd5 (patch) | |
| tree | f908d5c66db85a4675bb26f826a98e0315211a89 /Library | |
| parent | 10aab9a6723daefa7ca936346bfec571c11bbb8c (diff) | |
| download | brew-eb3c0cd2731d3622efb39a9b92e752a4c78adbd5.tar.bz2 | |
Don't error out with Xcode 4.5
c.f. Homebrew/homebrew#14603.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/macos.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/macos.rb b/Library/Homebrew/macos.rb index dd88e122b..13f940cec 100644 --- a/Library/Homebrew/macos.rb +++ b/Library/Homebrew/macos.rb @@ -203,7 +203,7 @@ module MacOS extend self EOS end - StandardCompilers[xcode].all? { |method, build| MacOS.send(method) == build } + StandardCompilers[xcode].all? { |method, build| MacOS.send(method) == build } rescue false end def app_with_bundle_id id |
