From: Michael Prokop Date: Wed, 5 Sep 2012 07:22:59 +0000 (+0200) Subject: Store md5sum of all files being available in build output directory X-Git-Tag: v0.19.7~1 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=c5517473e37ed6e8205e2b7d55b1c1043e7abfaf Store md5sum of all files being available in build output directory As of commit ff80c12bbdaf7ffaff4722bbd96808f2dbfbcad9 ['Install "GRML" files into GRML/$GRML_NAME/'] the squashfs file is missing in the md5sum file, even though the squashfs file is the most important one to check for. --- diff --git a/grml-live b/grml-live index 0aed77e..4a68301 100755 --- a/grml-live +++ b/grml-live @@ -1221,7 +1221,7 @@ fi # create md5sum file: if [ -z "$BOOTSTRAP_ONLY" ] ; then ( cd $BUILD_OUTPUT/GRML/"${GRML_NAME}" && - find .. -type f -not -name md5sums -not -name isolinux.bin -exec md5sum {} \; > md5sums ) + find ../.. -type f -not -name md5sums -not -name isolinux.bin -exec md5sum {} \; > md5sums ) fi # }}}