1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Fix test failing due to panic

This commit is contained in:
Chris Pearce 2019-04-07 18:43:05 +01:00
parent 3d11d7685b
commit 0c7bd12372

View File

@ -57,14 +57,11 @@ fn main() {
}
if let Some(matches) = matches.subcommand_matches("run") {
run(matches.clone()).unwrap();
run(matches.clone()).unwrap_or_else(|_| std::process::exit(1));
}
if matches.subcommand_matches("verify").is_some() {
match verify(None) {
Ok(_) => {}
Err(_) => std::process::exit(1),
}
verify(None).unwrap_or_else(|_| std::process::exit(1));
}
if matches.subcommand_matches("watch").is_some() {