You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_ => returntidy_error!(bad,"failed to run `x`: {}", e),
12
18
},
13
19
};
14
20
15
21
let output = child.wait_with_output().unwrap();
22
+
let temp_output = temp_child.wait_with_output().unwrap();
23
+
24
+
if output != temp_output {
25
+
returntidy_error!(
26
+
bad,
27
+
"Current version of x does not support the `--wrapper-version` argument\nConsider updating to the newer version of x by running `cargo install --path src/tools/x`"
28
+
)
29
+
}
16
30
17
31
if output.status.success(){
18
32
let version = String::from_utf8_lossy(&output.stdout);
0 commit comments