mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
18 lines
263 B
Bash
Executable File
18 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
: "${DESTDIR=./bin/release}"
|
|
|
|
if [ ! -d "$DESTDIR" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# checksums
|
|
(
|
|
cd ${DESTDIR}
|
|
sha256sum -b buildx-* > ./checksums.txt
|
|
sed -i '/darwin/d' ./checksums.txt
|
|
sha256sum -c --strict checksums.txt
|
|
)
|