Skip to content

Commit

Permalink
Update to verify bitcode on tvOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mpodwysocki committed Aug 4, 2020
1 parent a8e3e37 commit 293b95c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Scripts/build-archive.sh
Expand Up @@ -27,7 +27,9 @@ function verify_bitcode() {
}
for framework in \
$PRODUCTS_DIR/iOS/*.framework \
$PRODUCTS_DIR/XCFramework/*.xcframework/ios-arm*/*.framework; do
$PRODUCTS_DIR/tvOS/*.framework \
$PRODUCTS_DIR/XCFramework/*.xcframework/ios-arm*/*.framework \
$PRODUCTS_DIR/XCFramework/*.xcframework/tvos-arm*/*.framework; do
verify_bitcode "$framework" || invalid_bitcode+=(${framework#"$PRODUCTS_DIR"/})
done
if [ ${#invalid_bitcode[@]} -ne 0 ]; then
Expand Down

0 comments on commit 293b95c

Please sign in to comment.