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 d6795ae commit dc9a0d3Copy full SHA for dc9a0d3
src/init.rs
@@ -10,7 +10,7 @@ const POSSIBLE_BACKENDS: &[&str] = &[
10
];
11
12
fn get_native_arch() -> Result<String> {
13
- let output = Command::new("rustc").args(&["--print", "cfg"]).output()?;
+ let output = Command::new("rustc").args(["--print", "cfg"]).output()?;
14
let buf = BufReader::new(output.stdout.as_slice());
15
for line in buf.lines() {
16
let line = line?;
0 commit comments