Merge "decode_to_md5.sh: fix local md5 variable assignment"

This commit is contained in:
James Zern 2014-07-30 10:55:11 -07:00 коммит произвёл Gerrit Code Review
Родитель 347c8cf68f c0348216c3
Коммит 583ed8562b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -44,8 +44,8 @@ decode_to_md5() {
[ -e "${output_file}" ] || return 1
local md5_last_frame=$(tail -n1 "${output_file}")
local actual_md5=$(echo "${md5_last_frame% *}" | tr -d [:space:])
local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')"
local actual_md5="$(echo "${md5_last_frame}" | awk '{print $1}')"
[ "${actual_md5}" = "${expected_md5}" ] || return 1
}