From f7b3711603536b1b1ad5246afa749087de688464 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Tue, 7 Mar 2023 15:04:28 -0700 Subject: [PATCH] fix(nargo): Use yml extension for bug report link presented upon panic (#960) fix(nargo): Use yml extension on the bug report link presented upon panic --- crates/nargo/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nargo/src/main.rs b/crates/nargo/src/main.rs index fc051187443..050ba54300a 100644 --- a/crates/nargo/src/main.rs +++ b/crates/nargo/src/main.rs @@ -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();