diff --git a/crates/cli/src/args.rs b/crates/cli/src/args.rs index 4d1f0d14..64e7625b 100644 --- a/crates/cli/src/args.rs +++ b/crates/cli/src/args.rs @@ -1051,7 +1051,8 @@ pub fn get_args() -> Args { } debug!("expanding @argfile arguments if any"); - let args = argfile::expand_args(argfile::parse_fromfile, argfile::PREFIX).unwrap(); + let args = argfile::expand_args(argfile::parse_fromfile, argfile::PREFIX) + .expect("while expanding @argfile"); debug!("parsing arguments"); let mut args = Args::parse_from(args);