fix: Simplify extension folder name (#38690)

This commit is contained in:
Michael S. Molina
2026-03-17 14:00:19 -03:00
committed by Michael S. Molina
parent 54b313c659
commit 435e405263
4 changed files with 33 additions and 35 deletions

View File

@@ -663,7 +663,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)