From 17daad941e46f56406f997d72106e127954de84c Mon Sep 17 00:00:00 2001 From: jaydee Date: Tue, 16 Dec 2025 23:55:58 +0100 Subject: [PATCH] build --- port.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/port.py b/port.py index 4ee198d..6798a32 100644 --- a/port.py +++ b/port.py @@ -971,15 +971,16 @@ class Portainer: values=service_tuples ).run() print(service_tuples) - if "__ALL__" in service_ids: - service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__"] - print(service_ids) if "__ONLY_CHECK__" in service_ids: print("ONLY CHECK") service_ids.remove("__ONLY_CHECK__") self.args.update = False else: self.args.update = True + if "__ALL__" in service_ids: + service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__"] + print(service_ids) + elif self.args.service_id == "all": service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__"] else: