get-models: Change == to = to resolve #92

This commit is contained in:
Brandon Amos 2016-02-06 16:32:38 -05:00
parent cfe3a83e2f
commit 3fefe5825c
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ checkmd5() {
local FNAME=$1
local EXPECTED=$2
local ACTUAL=$(md5str "$FNAME")
if [ $EXPECTED == $ACTUAL ]; then
if [ $EXPECTED = $ACTUAL ]; then
printf "+ $FNAME: successfully checked\n"
else
printf "+ ERROR! $FNAME md5sum did not match.\n"