diff --git a/tools/src/bin/parser/main.rs b/tools/src/bin/parser/main.rs index e8c30ca..0b8e779 100644 --- a/tools/src/bin/parser/main.rs +++ b/tools/src/bin/parser/main.rs @@ -16,6 +16,6 @@ struct Args { fn main() -> anyhow::Result<()> { let args = Args::parse(); let repo = Repo::new(&args.repo); - repo.compile(&args.target).unwrap(); + repo.compile(&args.target)?; Ok(()) }