Skip to content

Commit 33309f0

Browse files
committed
Make tooling happy
1 parent 17d5455 commit 33309f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

toolchain/internal/llvm_distributions.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ def download_llvm(rctx):
808808

809809
res = rctx.download_and_extract(
810810
[_full_url(url) for url in urls],
811-
sha256,
811+
sha256 = sha256,
812812
stripPrefix = strip_prefix,
813813
auth = _get_auth(rctx, urls),
814814
)
@@ -1457,7 +1457,7 @@ def _distributions_test_writer_impl(ctx):
14571457
parsed_llvm_version = version,
14581458
)
14591459
for basename, distribution in all_llvm_distributions.items():
1460-
sha256, shaerr = _normalize_and_check_sha256(distribution.sha256)
1460+
_, shaerr = _normalize_and_check_sha256(distribution.sha256)
14611461
if shaerr:
14621462
output.append("err: {basename}: bad sha256: {shaerr}".format(
14631463
basename = basename,

0 commit comments

Comments
 (0)