Fixed all warnings

This commit is contained in:
Syrus Akbary
2018-11-28 13:29:50 -08:00
parent 80ddc759a1
commit c9ae2f25b9
4 changed files with 9 additions and 10 deletions

View File

@ -1,5 +1,4 @@
//! When wasmer self-update is executed, this is what gets executed
use std::io;
use std::process::{Command, Stdio};
pub fn self_update() {
@ -18,5 +17,5 @@ pub fn self_update() {
.ok()
.expect("Failed to execute.");
the_process.wait();
the_process.wait().unwrap();
}