summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoen Kooi <koen.kooi@linaro.org>2016-02-17 15:46:57 +0100
committerKoen Kooi <koen.kooi@linaro.org>2016-02-17 15:46:57 +0100
commita4e770bb9e1baa9195b7ed9efd7065fd88062690 (patch)
tree805654babdb202fd205c905fa6d14ac2960f0290
parent1d9a01d0566d3155a6b2e5cec55d63045eaed451 (diff)
post-build-create-image-manifest.sh: fix typo
Change-Id: Idbdb9715fb18b69f7d61242c1cce2394aa54f796 Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
-rwxr-xr-xpost-build-create-image-manifest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/post-build-create-image-manifest.sh b/post-build-create-image-manifest.sh
index d3cdcee..3115f44 100755
--- a/post-build-create-image-manifest.sh
+++ b/post-build-create-image-manifest.sh
@@ -92,7 +92,7 @@ if [ -n "${WORKSPACE}" ]; then
# Add md5sums for all build artefacts
for f in $(find ${WORKSPACE}/out) ; do
- if [ -f "f" ] ; then
+ if [ -f "$f" ] ; then
md5sum $f > ${f}.md5
fi
done