Skip to content

Commit

Permalink
Merge pull request #308 from IntrepidPursuits/pat/xcode7-support
Browse files Browse the repository at this point in the history
Retrieving LLVM version is now backwards compatible with Xcode 7
  • Loading branch information
ksuther authored May 16, 2017
2 parents 5361085 + c8d05f2 commit b814120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/slather/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def configure
configure_binary_file
configure_decimals

self.llvm_version = `xcrun llvm-cov --version`.match(/Apple LLVM version ([\d\.]+)/).captures[0]
self.llvm_version = `xcrun llvm-cov --version`.match(/LLVM version ([\d\.]+)/).captures[0]
rescue => e
puts e.message
puts failure_help_string
Expand Down

0 comments on commit b814120

Please sign in to comment.