mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 09:57:45 +08:00
Merge pull request #1095 from crazy-max/fix-checksum-file
release: fix checksum file
This commit is contained in:
commit
e0cffbdbdf
@ -17,4 +17,10 @@ if ! type shasum > /dev/null 2>&1; then
|
|||||||
echo >&2 "ERROR: shasum is required"
|
echo >&2 "ERROR: shasum is required"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
find ./${RELEASE_OUT}/ -type f \( -iname "buildx-*" ! -iname "*darwin*" \) -print0 | sort -z | xargs -r0 shasum -a 256 -b | sed 's# .*/# #' > ./${RELEASE_OUT}/checksums.txt
|
find ./${RELEASE_OUT}/ -type f \( -iname "buildx-*" ! -iname "*darwin*" \) -print0 | sort -z | xargs -r0 shasum -a 256 -b | sed 's# .*/# #' > ./${RELEASE_OUT}/checksums.txt
|
||||||
|
|
||||||
|
# verify
|
||||||
|
(
|
||||||
|
cd ./${RELEASE_OUT}
|
||||||
|
shasum -a 256 -U -c checksums.txt
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user