From d4bf06489ce24aadc6f2ef46cbe0eb1d8c308cdb Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sun, 5 Apr 2026 22:38:18 -0400 Subject: [PATCH] i think that should fix? --- scripts/deploy_containers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 6f808e8..45533c7 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -50,10 +50,10 @@ def main(): # i'm not proud of this either if not os.path.exists(os.path.join(dir_path, file)): if "roles" in file and not os.path.exists(os.path.join(dir_path, service_name)): - print(f"[MAIN] '{task_name}' role removed, marking for cleanup..") + print(f"[MAIN] '{service_name}' role removed, marking for cleanup..") removed_containers.append(service_name) - elif "tasks" in task_name: - print(f"[MAIN] '{task_name}' non-existent, marking for cleanup..") + elif "tasks" in file: + print(f"[MAIN] '{service_name}' non-existent, marking for cleanup..") removed_containers.append(service_name) else: if service_name not in ignore_deploys_for and service_name not in new_diff: