Skip to content

Commit

Permalink
fix(nargo): Use yml extension for bug report link presented upon panic (
Browse files Browse the repository at this point in the history
#960)

fix(nargo): Use yml extension on the bug report link presented upon panic
  • Loading branch information
phated authored Mar 7, 2023
1 parent 2e63492 commit f7b3711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nargo/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn main() -> eyre::Result<()> {
// Register a panic hook to display more readable panic messages to end-users
let (panic_hook, _) = HookBuilder::default()
.display_env_section(false)
.panic_section("This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.md")
.panic_section("This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.yml")
.into_hooks();
panic_hook.install();

Expand Down

0 comments on commit f7b3711

Please sign in to comment.