aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2024-09-11 02:41:28 +0200
committerLaytan Laats <laytanlaats@hotmail.com>2024-09-11 02:41:28 +0200
commit496d732aaf41492099ef0bbada4b43d99e2b7942 (patch)
treed3e8dd34a2b3b88c3c58356537fa4e71f193a5e1 /ci
parent26db1c88600111a54978fefb3155e874a902e2f0 (diff)
ci: does backblaze not like tar archives?
Diffstat (limited to 'ci')
-rw-r--r--ci/nightly.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/nightly.py b/ci/nightly.py
index 080d2f2c4..5930783e8 100644
--- a/ci/nightly.py
+++ b/ci/nightly.py
@@ -52,9 +52,9 @@ def create_and_upload_artifact_zip(platform: str, artifact: str) -> int:
zip_path = os.path.join("dist", os.path.relpath(file_path, artifact))
z.write(file_path, zip_path)
- if not os.path.exists(source_archive):
- print(f"Error: Newly created ZIP archive {source_archive} not found.")
- return 1
+ if not os.path.exists(source_archive):
+ print(f"Error: archive {source_archive} not found.")
+ return 1
print("Uploading {} to {}".format(source_archive, UPLOAD_FOLDER + destination_name))
bucket = get_bucket()