Skip to content

Commit

Permalink
BUGFIX - do not require file suffix in template files (Dockerfile.tem…
Browse files Browse the repository at this point in the history
…plate now processes correctly)
  • Loading branch information
miker985 committed Dec 4, 2024
1 parent 0192071 commit f7bf729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/finalize-template.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_parser():


def get_template_files():
return [str(path.joinpath()) for path in list(Path(".").rglob("*.template.*"))]
return [str(path.joinpath()) for path in list(Path(".").rglob("*.template*"))]


def finalize_template_file(path: str, args: Dict[str, Any]):
Expand Down

0 comments on commit f7bf729

Please sign in to comment.