Make arg_expand_all not short-circuit on first error
This commit is contained in:
@@ -705,7 +705,7 @@ fn main_args(
|
||||
// the compiler with @empty_file as argv[0] and no more arguments.
|
||||
let at_args = at_args.get(1..).unwrap_or_default();
|
||||
|
||||
let args = rustc_driver::args::arg_expand_all(early_dcx, at_args);
|
||||
let args = rustc_driver::args::arg_expand_all(early_dcx, at_args)?;
|
||||
|
||||
let mut options = getopts::Options::new();
|
||||
for option in opts() {
|
||||
|
||||
Reference in New Issue
Block a user