Make arg_expand_all not short-circuit on first error
This commit is contained in:
@@ -292,7 +292,7 @@ fn run_compiler(
|
||||
// the compiler with @empty_file as argv[0] and no more arguments.
|
||||
let at_args = at_args.get(1..).unwrap_or_default();
|
||||
|
||||
let args = args::arg_expand_all(&default_early_dcx, at_args);
|
||||
let args = args::arg_expand_all(&default_early_dcx, at_args)?;
|
||||
|
||||
let Some(matches) = handle_options(&default_early_dcx, &args) else { return Ok(()) };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user