Skip to content

Commit

Permalink
Fix usage of long commit in generate_prerelease_pip_index.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Apr 26, 2023
1 parent bf5f633 commit 579ce91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate_prerelease_pip_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def generate_pip_index(commit: str, upload: bool) -> None:
buffer.seek(0)

if upload:
upload_blob = wheels_bucket.blob(f"commit/{commit}/wheels/index.html")
upload_blob = wheels_bucket.blob(f"commit/{commit_short}/wheels/index.html")
print("Uploading results to {}".format(upload_blob.name))
upload_blob.upload_from_file(buffer, content_type="text/html")

Expand Down

0 comments on commit 579ce91

Please sign in to comment.