Exit with error

This commit is contained in:
ConnorSkees 2020-02-29 20:02:58 -05:00
parent 4e7cf277e1
commit b62b9240c0

View File

@ -47,7 +47,7 @@ impl Display for Value {
Ok(v) => v, Ok(v) => v,
Err(e) => { Err(e) => {
eprintln!("{}", e); eprintln!("{}", e);
std::process::exit(0); std::process::exit(1);
} }
} }
), ),