From 11ee38c3c1b056a34f2f2e31bab1121b1cc01875 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Wed, 15 Oct 2025 23:32:10 -0400 Subject: [PATCH] change variable name --- scripts/deploy_containers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 1b29517..59c4aff 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -75,8 +75,8 @@ def main(): if "roles/" not in file: task = deploy(tag=task_name) else: - role_name = file.split("/")[1] - task = deploy(tag=role_name) + task_name = file.split("/")[1] + task = deploy(tag=task_name) if not task: failed.append(task_name)