summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2016-02-17 16:27:07 +0000
committerLinaro Code Review <review@review.linaro.org>2016-02-17 16:27:07 +0000
commitfbce4514b9723ed9e3b0911b721150629f0b5448 (patch)
tree805654babdb202fd205c905fa6d14ac2960f0290
parent3297e0e4bd14289da9f3711fdf981d43b7f98743 (diff)
parenta4e770bb9e1baa9195b7ed9efd7065fd88062690 (diff)
Merge "post-build-create-image-manifest.sh: fix typo"
-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