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)?;
113
-
let version = stdout.trim().split_whitespace().nth(1);
113
+
let version = stdout.split_whitespace().nth(1);
114
114
match version {
115
115
Some(v) => Ok(v.to_string()),
116
116
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/drager/wasm-pack/issues/new?template=bug_report.md.")
0 commit comments