stevedlawrence closed pull request #123: Use --binary flag when generating
release checksums
URL: https://github.com/apache/incubator-daffodil/pull/123
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/scripts/release-candidate.sh b/scripts/release-candidate.sh
index 548d966df..372080974 100755
--- a/scripts/release-candidate.sh
+++ b/scripts/release-candidate.sh
@@ -100,8 +100,8 @@ do
pushd $DAFFODIL_RELEASE_DIR/$i > /dev/null
for file in *
do
- sha256sum $file > $file.sha256
- sha512sum $file > $file.sha512
+ sha256sum --binary $file > $file.sha256
+ sha512sum --binary $file > $file.sha512
gpg --default-key $PGP_SIGNING_KEY_ID --detach-sign --armor --output
$file.asc $file
done
popd > /dev/null
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services