fix: Simplify extension folder name (#38690)

This commit is contained in:
Michael S. Molina
2026-03-17 14:00:19 -03:00
committed by GitHub
parent 5865176f36
commit 6f301707f9
4 changed files with 33 additions and 35 deletions

View File

@@ -824,7 +824,7 @@ def init(
else click.confirm("Include backend?", default=True)
)
target_dir = Path.cwd() / names["id"]
target_dir = Path.cwd() / names["name"]
if target_dir.exists():
click.secho(f"❌ Directory {target_dir} already exists.", fg="red")
sys.exit(1)