From fb29fbce8d86f2194033729fb852b98ea23113a2 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sat, 10 Jan 2026 15:28:03 -0500 Subject: [PATCH] don't run deployment if no tasks --- scripts/deploy_containers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/deploy_containers.py b/scripts/deploy_containers.py index ffebd9f..6aa009e 100644 --- a/scripts/deploy_containers.py +++ b/scripts/deploy_containers.py @@ -60,7 +60,8 @@ def main(): if service_name not in ignore_deploys_for and service_name not in new_diff: new_diff.append(service_name) - deployed = deploy(",".join(new_diff)) + if len(new_diff) > 0: + deployed = deploy(",".join(new_diff)) for task in removed_containers: print(f"[MAIN] Attempting to remove containers related to '{task}'...")