Add print to delete_old_binaries.py

This commit is contained in:
gingerBill
2024-06-03 23:01:39 +01:00
parent 0ef0894213
commit c8f9af64db
+1
View File
@@ -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]