Generate sha256 file automatically so we don't have to copy-and-paste it.

This commit is contained in:
Bruce A. Mah 2015-01-09 10:53:03 -08:00
parent c4719dd165
commit 20bd2a6efa
No known key found for this signature in database
GPG Key ID: 4984910A8CAAEE8A

View File

@ -37,7 +37,7 @@ do_tar ()
Darwin) sha="shasum -a 256" ;;
*) sha=echo ;;
esac
${sha} ${tarball}
${sha} ${tarball} | tee ${tarball}.sha256
}
usage ()