fix: Print other message if we could not find the target

master
Jesper Håkansson 6 years ago
parent 8bba404e59
commit 6a0f2fb247
  1. 2
      src/build/wasm_target.rs

@ -20,7 +20,7 @@ impl fmt::Display for Wasm32Check {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let target = "wasm32-unknown-unknown";
if self.found {
if !self.found {
let rustup_string = if self.is_rustup {
"It looks like Rustup is being used.".to_owned()
} else {

Loading…
Cancel
Save