We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbe120 commit fb68eccCopy full SHA for fb68ecc
src/llvm_tools.rs
@@ -82,10 +82,7 @@ pub fn profraws_to_lcov(
82
fn get_profdata_path() -> Result<PathBuf, String> {
83
let path = Tool::Profdata.path().map_err(|x| x.to_string())?;
84
if !path.exists() {
85
- Err(String::from(
86
- "We couldn't find llvm-profdata. Try installing the llvm-tools \
87
- component with `rustup component add llvm-tools-preview`.",
88
- ))
+ Err(String::from("We couldn't find llvm-profdata. Try installing the llvm-tools component with `rustup component add llvm-tools-preview`."))
89
} else {
90
Ok(path)
91
}
0 commit comments