We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3616d9 commit 0f9536eCopy full SHA for 0f9536e
1 file changed
scripts/macos/download.sh
@@ -20,7 +20,7 @@ curl -fSL "${BASE_URL}/${TAG}/checksums.txt" -o "$TMPDIR/checksums.txt"
20
download_and_verify() {
21
local asset="$1"
22
curl -fSL "${BASE_URL}/${TAG}/${asset}" -o "$TMPDIR/${asset}"
23
- grep "^[0-9a-f]* ${asset}$" "$TMPDIR/checksums.txt" | (cd "$TMPDIR" && sha256sum -c)
+ grep "^[0-9a-f]* ${asset}$" "$TMPDIR/checksums.txt" | (cd "$TMPDIR" && shasum -a 256 -c)
24
}
25
26
download_and_verify "frostdart.xcframework.zip"
0 commit comments