We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3b709 commit 1f467c6Copy full SHA for 1f467c6
src/tool.rs
@@ -62,6 +62,11 @@ impl Tool {
62
Ok(p) => p,
63
};
64
65
+ if !path.exists() {
66
+ eprintln!("Could not find tool: {}\nat: {}\nConsider `rustup component add llvm-tools-preview`", self.name(), path.to_string_lossy());
67
+ process::exit(102)
68
+ };
69
+
70
// Note: The first argument is the name of the binary (e.g. `rust-nm`)
71
let args = env::args().skip(1);
72
0 commit comments