From c8f9af64db1600b4efb61561215c7c9fc46fd940 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 3 Jun 2024 23:01:39 +0100 Subject: [PATCH] Add `print` to `delete_old_binaries.py` --- ci/delete_old_binaries.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/delete_old_binaries.py b/ci/delete_old_binaries.py index 206d849f5..2a87bc731 100644 --- a/ci/delete_old_binaries.py +++ b/ci/delete_old_binaries.py @@ -12,6 +12,7 @@ def main(): print(f"Looking for binaries to delete older than {days_to_keep} days") files_lines = execute_cli(f"b2 ls --long --versions {bucket} nightly").split("\n") + print(files_lines) for x in files_lines: parts = [y for y in x.split(' ') if y]