Fixes `tvOS` detection.

This commit is contained in:
Krunoslav Zaher 2015-10-19 20:08:27 +02:00
parent fcd63dafb8
commit c50f5043d5
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
TV_OS=0
RELEASE_TEST=0
if [ `xcodebuild -showsdks | grep tvOS | wc -l` -ge 4 ]; then
if [ `xcodebuild -showsdks | grep tvOS | wc -l` -gt 0 ]; then
printf "${GREEN}tvOS found${RESET}\n"
TV_OS=1
fi