Browse Source

Add error causes to failed WAST directives (#477)

pull/494/head
Andrew Brown 5 years ago
committed by Alex Crichton
parent
commit
a8afdff972
  1. 2
      src/bin/wast.rs

2
src/bin/wast.rs

@ -168,7 +168,7 @@ fn main() {
wast_context
.run_file(Path::new(&filename))
.unwrap_or_else(|e| {
eprintln!("{}", e);
eprintln!("{:?}", e);
process::exit(1)
});
}

Loading…
Cancel
Save