summaryrefslogtreecommitdiff
path: root/platform/ios/scripts/validate-framework-zip.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/scripts/validate-framework-zip.sh')
-rwxr-xr-xplatform/ios/scripts/validate-framework-zip.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/scripts/validate-framework-zip.sh b/platform/ios/scripts/validate-framework-zip.sh
index 2cd1e90ee7..0bcd094b69 100755
--- a/platform/ios/scripts/validate-framework-zip.sh
+++ b/platform/ios/scripts/validate-framework-zip.sh
@@ -54,7 +54,7 @@ function verifyFramework() {
# Verify the static lib at least has simulator and the two common ARM architectures
local PRESENT_ARCHITECTURES=$( xcrun lipo -info "${BINARY_PATH}" )
- for arch in "armv7" "arm64" "i386" "x86_64"; do
+ for arch in "armv7" "arm64" "x86_64"; do
if [[ ! $PRESENT_ARCHITECTURES == *$arch* ]]; then
printf "ERROR: Architecture ${arch} not found in ${FRAMEWORK_NAME}\n";
exit 6;