Updates Scripts Run Options

This commit is contained in:
2023-10-14 22:52:10 -03:00
parent 4f1560f691
commit 27e18611f8
3 changed files with 6 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ def write_template(template: str, output: str):
output.write(envsubst(template.read()))
def configure_templates(environment: str):
if not environment in ("prod", "staging", "local", "dev"):
if not environment in ("prod", "staging", "local"):
raise ValueError("Invalid Environment Selected")
match environment: