We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d5455 commit 33309f0Copy full SHA for 33309f0
toolchain/internal/llvm_distributions.bzl
@@ -808,7 +808,7 @@ def download_llvm(rctx):
808
809
res = rctx.download_and_extract(
810
[_full_url(url) for url in urls],
811
- sha256,
+ sha256 = sha256,
812
stripPrefix = strip_prefix,
813
auth = _get_auth(rctx, urls),
814
)
@@ -1457,7 +1457,7 @@ def _distributions_test_writer_impl(ctx):
1457
parsed_llvm_version = version,
1458
1459
for basename, distribution in all_llvm_distributions.items():
1460
- sha256, shaerr = _normalize_and_check_sha256(distribution.sha256)
+ _, shaerr = _normalize_and_check_sha256(distribution.sha256)
1461
if shaerr:
1462
output.append("err: {basename}: bad sha256: {shaerr}".format(
1463
basename = basename,
0 commit comments