From: Michael Prokop Date: Sun, 9 Dec 2007 22:26:50 +0000 (+0100) Subject: buildd store_iso(): move md5sum file as well X-Git-Tag: 0.0.13~29 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=89064c9e3cded3beb72f98a2722fcaa6f6fa3e78 buildd store_iso(): move md5sum file as well --- diff --git a/buildd/functions.sh b/buildd/functions.sh index 6ea37cd..ebfc888 100755 --- a/buildd/functions.sh +++ b/buildd/functions.sh @@ -129,7 +129,10 @@ EOF " | \ store_iso() { if [ "$RC" = "0" ] ; then [ -d "$ISO_DIR" ] || mkdir "$ISO_DIR" - mv $OUTPUT_DIR/grml_isos/$ISO_NAME $ISO_DIR + mv "${OUTPUT_DIR}/grml_isos/${ISO_NAME}" "$ISO_DIR" + if [ -r "${OUTPUT_DIR}/grml_isos/${ISO_NAME}.md5" ] ; then + mv "${OUTPUT_DIR}/grml_isos/${ISO_NAME}.md5" "${ISO_DIR}" + fi fi } diff --git a/debian/changelog b/debian/changelog index 7ef9e87..eedcd70 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ grml-live (0.0.13) unstable; urgency=low * Replace mailx with bsd-mailx in GRML_FULL. http://packages.qa.debian.org/b/bsd-mailx/news/20071209T135336Z.html + * buildd store_iso(): move md5sum file as well -- Michael Prokop Sun, 09 Dec 2007 22:38:31 +0100