From: Michael Prokop Date: Fri, 24 Feb 2017 12:49:36 +0000 (+0100) Subject: Fix generation of SHA-256 and SHA-512 hashes X-Git-Tag: v0.29.0~1 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=fda69fdbf5232e28a8536317656e16fca2ad2962 Fix generation of SHA-256 and SHA-512 hashes Fixes missing output generation of commit fd166a511adc0f222f365d61252c0a32a78ebcdf --- diff --git a/grml-live b/grml-live index 7929599..044140a 100755 --- a/grml-live +++ b/grml-live @@ -1440,9 +1440,9 @@ else touch -r ${ISO_NAME} ${ISO_NAME}.md5 sha1sum ${ISO_NAME} > ${ISO_NAME}.sha1 && \ touch -r ${ISO_NAME} ${ISO_NAME}.sha1 - sha256sum ${ISO_NAME} ${ISO_NAME}.sha256 && \ + sha256sum ${ISO_NAME} > ${ISO_NAME}.sha256 && \ touch -r ${ISO_NAME} ${ISO_NAME}.sha256 - sha512sum ${ISO_NAME} ${ISO_NAME}.sha512 && \ + sha512sum ${ISO_NAME} > ${ISO_NAME}.sha512 && \ touch -r ${ISO_NAME} ${ISO_NAME}.sha512 fi )