From 0334694c03019256ffb85c5cb007765d7043ae06 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 24 Jun 2013 15:13:59 -0700 Subject: [PATCH] scripts: SHA256SUMs file for checksumming --- scripts/dist.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/dist.sh b/scripts/dist.sh index 457e77c34..3e2db562d 100755 --- a/scripts/dist.sh +++ b/scripts/dist.sh @@ -86,4 +86,9 @@ done waitAll +# Make the checksums +pushd ./pkg/${VERSIONDIR}/dist +shasum -a256 * > ./${VERSION}_SHA256SUMS +popd + exit 0