mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-29 00:47:42 +08:00
Merge pull request #1432 from crazy-max/hack-hash-files
hack: improve hash-files script
This commit is contained in:
commit
3dab19f933
@ -9,14 +9,9 @@ if [ ! -d "$DESTDIR" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# checksums
|
# checksums
|
||||||
if ! command shasum > /dev/null 2>&1; then
|
|
||||||
echo >&2 "ERROR: shasum is required"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
find ./${DESTDIR}/ -type f \( -iname "buildx-*" ! -iname "*darwin*" \) -print0 | sort -z | xargs -r0 shasum -a 256 -b | sed 's# .*/# #' > ./${DESTDIR}/checksums.txt
|
|
||||||
|
|
||||||
# verify
|
|
||||||
(
|
(
|
||||||
cd ./${DESTDIR}
|
cd ${DESTDIR}
|
||||||
shasum -a 256 -U -c checksums.txt
|
sha256sum -b buildx-* > ./checksums.txt
|
||||||
|
sed -i '/darwin/d' ./checksums.txt
|
||||||
|
sha256sum -c --strict checksums.txt
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user