Print more context for debugging nop-preprocessor

This commit is contained in:
Eric Huss 2025-04-21 19:18:16 -07:00
parent ba448a9dd5
commit b4221680e4

View File

@ -26,7 +26,7 @@ fn main() {
if let Some(sub_args) = matches.subcommand_matches("supports") {
handle_supports(&preprocessor, sub_args);
} else if let Err(e) = handle_preprocessing(&preprocessor) {
eprintln!("{e}");
eprintln!("{e:?}");
process::exit(1);
}
}