Skip to content

Commit

Permalink
🐛 lowercase name in ozi.render.render_project_files
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jul 4, 2024
1 parent 1709f7b commit a18015a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ozi/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def render_project_files(env: Environment, target: Path, name: str) -> None:
:param name: the canonical project name (without normalization)
:type name: str
"""
Path(target, underscorify(name)).mkdir()
Path(target, underscorify(name).lower()).mkdir()
Path(target, 'subprojects').mkdir()
Path(target, 'tests').mkdir()
templates = METADATA.spec.python.src.template
Expand Down

0 comments on commit a18015a

Please sign in to comment.