This commit is contained in:
Ethan Buchman 2015-12-05 17:52:35 +00:00
parent 21abda0602
commit 36e89b606e
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ STDIN`
# echo $?
HASH1=`echo "$OUTPUT" | tail -n +2 | head -n 1`
if [[ "${HASH1:0:2}" != "00" ]]; then
echo "Expected opening hash to lead with 00. Got $HASH1"
if [[ "$HASH1" != "" ]]; then
echo "Expected opening hash to be empty. Got $HASH1"
exit 1
fi