From 98ce9739970c16d606683d7365d0e21482c99121 Mon Sep 17 00:00:00 2001 From: Emin Date: Wed, 22 Apr 2026 16:41:58 +0800 Subject: [PATCH] fix(build): omit relative path in wheel checksums --- bazel/scripts/build-wheel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/scripts/build-wheel.sh b/bazel/scripts/build-wheel.sh index d19fa5e..050ec2d 100755 --- a/bazel/scripts/build-wheel.sh +++ b/bazel/scripts/build-wheel.sh @@ -79,7 +79,7 @@ print('ecc wheel smoke test passed: chipcompiler package importable') ( cd "$out_dir" - sha256sum ./*.whl > "$out_root/SHA256SUMS" + sha256sum -- *.whl > "$out_root/SHA256SUMS" ) echo "[wheel] done"