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
let stdout = child::run_capture_stdout(cmd, tool)?;
107
-
let version = stdout.trim().split_whitespace().nth(1);
107
+
let version = stdout.split_whitespace().nth(1);
108
108
match version {
109
109
Some(v) => Ok(v.to_string()),
110
110
None => bail!("Something went wrong! We couldn't determine your version of the wasm-bindgen CLI. We were supposed to set that up for you, so it's likely not your fault! You should file an issue: https://github.com/rustwasm/wasm-pack/issues/new?template=bug_report.md.")
0 commit comments