From 248af84c40b30d6dd82c71fd54d410f8db37ce49 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sat, 10 Jan 2026 15:29:26 -0500 Subject: [PATCH] Update deploy_containers.py --- scripts/deploy_containers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index 5625b6d..c15760a 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -62,6 +62,9 @@ def main(): if len(new_diff) > 0: deployed = deploy(",".join(new_diff)) + else: + # success, nothing deployed + deployed = True for task in removed_containers: print(f"[MAIN] Attempting to remove containers related to '{task}'...") @@ -85,7 +88,7 @@ def main(): print(f" All tasks: {', '.join(new_diff)}") print("---------------------\n") sys.exit(0) - elif not deployed and len(new_diff) > 0: + elif not deployed and len(new_diff) >: print("\n---------------------") print(" Deployment failed!") print(f" All tasks: {', '.join(new_diff)}")