Skip to content

Commit

Permalink
Fix whitespace issues
Browse files Browse the repository at this point in the history
  • Loading branch information
viteinfinite committed Jul 10, 2015
1 parent 32dab65 commit c70948f
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 c70948f

Please sign in to comment.