From 7c75dbfd3be55ec79f36f234045315174d246996 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Fri, 24 Apr 2026 15:41:41 -0400 Subject: [PATCH] keeeewl it works --- scripts/run_updates.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/run_updates.py b/scripts/run_updates.py index 30f85c7..ddbe490 100644 --- a/scripts/run_updates.py +++ b/scripts/run_updates.py @@ -37,7 +37,7 @@ def main(): continue if image["result"] and not image["result"]["has_update"]: continue - + refs.append(reference) print("attempting to match images to references: " + ", ".join(refs)) @@ -58,8 +58,6 @@ def main(): print("Attempting to clean up dangling/unassumed images") subprocess.run(f"docker image prune -a -f", shell=True) - else: - print("All up to date! :)") if DISCORD_WEBHOOK_URL: print("sending discord notification..") @@ -76,6 +74,8 @@ def main(): "content-type": "application/json" } requests.post(DISCORD_WEBHOOK_URL, json=body, headers=headers) + else: + print("All up to date! :)") if __name__ == "__main__": main()