Replace unwrap() with match

This commit is contained in:
Matthias Beyer 2016-08-03 11:34:58 +02:00
parent 84e33c07e6
commit 0f13fc38c0

View file

@ -36,11 +36,10 @@ pub fn create(rt: &Runtime) {
exit(1);
}
let path = build_entry_path(rt.store(), path.unwrap());
if path.is_err() {
trace_error_exit(&path.unwrap_err(), 1);
}
let path = path.unwrap();
let path = match build_entry_path(rt.store(), path.unwrap()) {
Err(e) => trace_error_exit(&e, 1),
Ok(p) => p,
};
debug!("path = {:?}", path);
if scmd.subcommand_matches("entry").is_some() {