tvOSBuild.sh 183 B

123456789101112
  1. #!/bin/bash
  2. XCP=$(which xcpretty)
  3. echo $XCP
  4. if [ -z $XCP ]; then
  5. xcodebuild BUILD_ROOT=build -target FLEX-tvOS
  6. else
  7. xcodebuild BUILD_ROOT=build -target FLEX-tvOS | $XCP
  8. fi