fix missing '*' in checksums.txt

the created checksums.txt file is not properly formatted.
this fixes the Creation of the checksums for the build artifacts
fixes https://github.com/docker/buildx/issues/1070

Signed-off-by: woa7 <7572779+woa7@users.noreply.github.com>
pull/1071/head
woa7 3 years ago
parent 951201ac1b
commit dac8d68ec1

@ -17,4 +17,4 @@ if ! type shasum > /dev/null 2>&1; then
echo >&2 "ERROR: shasum is required"
exit 1
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

Loading…
Cancel
Save