doesn't contains -> doesn't contain

This commit is contained in:
Stephen Hinton 2016-09-28 14:54:59 -05:00
parent 55c1f5bc15
commit 3fbca9aee8
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ echo "Created $FWNAME.framework"
check_bitcode=`otool -arch arm64 -l $FWNAME.framework/$FWNAME | grep __bitcode`
if [ -z "$check_bitcode" ]
then
echo "INFO: $FWNAME.framework doesn't contains Bitcode"
echo "INFO: $FWNAME.framework doesn't contain Bitcode"
else
echo "INFO: $FWNAME.framework contains Bitcode"
fi