Prepare eval error handling for cli arg errors

This commit is contained in:
Joscha 2021-12-18 23:31:27 +01:00
parent 279bf4a4d1
commit ff627b98df
8 changed files with 107 additions and 93 deletions

View file

@ -139,7 +139,7 @@ pub fn run() {
let range = find_range(&opt, now);
if let Err(e) = run_command(&opt, &mut files, range, now) {
e.print(&files);
e.print(&files.sources());
process::exit(1);
}