Skip to content

Commit

Permalink
Merge pull request #1 from sync/feature-profdata
Browse files Browse the repository at this point in the history
Fix broken path
  • Loading branch information
viteinfinite committed Jun 18, 2015
2 parents b1de838 + b305ed8 commit d3bece9
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 @@ -106,7 +106,7 @@ def profdata_llvm_cov_output
raise StandardError, "No Coverage.profdata files found. Please make sure the \"Code Coverage\" checkbox is enabled in your scheme's Test action or the build_directory property is set."
end
xcode_path = `xcode-select -p`.strip
llvm_cov_command = xcode_path + "Toolchains/XcodeDefault.xctoolchain/usr/bin/llvm-cov show -instr-profile #{coverage_profdata} #{binary_file}"
llvm_cov_command = xcode_path + "/Toolchains/XcodeDefault.xctoolchain/usr/bin/llvm-cov show -instr-profile #{coverage_profdata} #{binary_file}"
`#{llvm_cov_command}`
end
private :profdata_llvm_cov_output
Expand Down

0 comments on commit d3bece9

Please sign in to comment.