diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-03 23:12:24 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-03 23:12:24 +0100 |
| commit | 17225131f729de1e233220fabb7e1ea3257f02c3 (patch) | |
| tree | 3ed17568bcd000210c0f2d57f64f0f1f8a04c55e /ci | |
| parent | c8f9af64db1600b4efb61561215c7c9fc46fd940 (diff) | |
Try `/` rather than ` `
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/delete_old_binaries.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/delete_old_binaries.py b/ci/delete_old_binaries.py index 2a87bc731..294c3c4be 100644 --- a/ci/delete_old_binaries.py +++ b/ci/delete_old_binaries.py @@ -11,7 +11,7 @@ def main(): days_to_keep = int(sys.argv[2]) 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") + 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] |