summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoen Kooi <koen.kooi@linaro.org>2016-02-10 11:02:00 +0100
committerKoen Kooi <koen.kooi@linaro.org>2016-02-10 11:02:00 +0100
commit1d9a01d0566d3155a6b2e5cec55d63045eaed451 (patch)
tree2f546490fd68ba036ca471571e203e6c9f640759
parentc388931972149e1a2251d87b75be832d2b3ad966 (diff)
post-build-create-image-manifest.sh: create .md5 files for each build artefact
Change-Id: Ic1190559901be7aee4cd73d96b4537a33020991b Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
-rwxr-xr-xpost-build-create-image-manifest.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/post-build-create-image-manifest.sh b/post-build-create-image-manifest.sh
index 9831273..d3cdcee 100755
--- a/post-build-create-image-manifest.sh
+++ b/post-build-create-image-manifest.sh
@@ -89,4 +89,11 @@ if [ -n "${WORKSPACE}" ]; then
fi
done
fi
+
+ # Add md5sums for all build artefacts
+ for f in $(find ${WORKSPACE}/out) ; do
+ if [ -f "f" ] ; then
+ md5sum $f > ${f}.md5
+ fi
+ done
fi