fix(extensions): fix gitignore template and bump version (#38614)

This commit is contained in:
Ville Brofeldt
2026-03-13 04:50:10 -07:00
committed by GitHub
parent d5cf77cd60
commit f5383263bc
3 changed files with 2 additions and 2 deletions

View File

@@ -686,7 +686,7 @@ def init(
click.secho("✅ Created extension.json", fg="green")
# Create .gitignore
gitignore = env.get_template(".gitignore.j2").render(ctx)
gitignore = env.get_template("gitignore.j2").render(ctx)
(target_dir / ".gitignore").write_text(gitignore)
click.secho("✅ Created .gitignore", fg="green")