diff --git a/allocmd/utilities/constants.py b/allocmd/utilities/constants.py index 941f15c..9a5a663 100644 --- a/allocmd/utilities/constants.py +++ b/allocmd/utilities/constants.py @@ -1 +1 @@ -cliVersion = "0.3.17" +cliVersion = "0.3.18" diff --git a/allocmd/utilities/utils.py b/allocmd/utilities/utils.py index 73f228f..1a89d19 100644 --- a/allocmd/utilities/utils.py +++ b/allocmd/utilities/utils.py @@ -111,7 +111,7 @@ def generate_all_files(env: Environment, file_configs, command: Command, type, n if command == Command.INIT: file_path = os.path.join(os.getcwd(), f'{name}/{type}/{config["file_name"]}') elif command == Command.DEPLOY: - file_path = os.path.join(os.getcwd(), f'{type}/{config["file_name"]}') + file_path = os.path.join(os.getcwd(), f'{config["file_name"]}') content = template.render(**config["context"]) with open(file_path, 'w') as f: