diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-03 23:01:39 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-03 23:01:39 +0100 |
| commit | c8f9af64db1600b4efb61561215c7c9fc46fd940 (patch) | |
| tree | 159f82a8993f9a173aa3f362470b59d6d274ea93 /ci | |
| parent | 0ef0894213f9b44e748bcdc965eedaaeb13dcc7f (diff) | |
Add `print` to `delete_old_binaries.py`
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/delete_old_binaries.py | 1 |
1 files changed, 1 insertions, 0 deletions
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] |