Commit c0348216 authored by James Zern's avatar James Zern
Browse files

decode_to_md5.sh: fix local md5 variable assignment

extract only the md5 + quote the result
fixes:
test/examples.sh: 47: local: img-176x144-0029.i420: bad variable name

Change-Id: I81c6a83c8a4e792a520fd7046c8eedcbd4af9a0c
Showing with 2 additions and 2 deletions
...@@ -44,8 +44,8 @@ decode_to_md5() { ...@@ -44,8 +44,8 @@ decode_to_md5() {
[ -e "${output_file}" ] || return 1 [ -e "${output_file}" ] || return 1
local md5_last_frame=$(tail -n1 "${output_file}") local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')"
local actual_md5=$(echo "${md5_last_frame% *}" | tr -d [:space:]) local actual_md5="$(echo "${md5_last_frame}" | awk '{print $1}')"
[ "${actual_md5}" = "${expected_md5}" ] || return 1 [ "${actual_md5}" = "${expected_md5}" ] || return 1
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment