File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -358,13 +358,17 @@ build_vcx_framework() {
358
358
UNIVERSAL_BUILD_PATH=$OUTPUT_DIR /universal/vcx
359
359
mkdir -p $UNIVERSAL_BUILD_PATH
360
360
cp -rvp vcx.framework $UNIVERSAL_BUILD_PATH
361
- zip -r $OUTPUT_DIR /libvcx-ios-${LIBVCX_VERSION} -universal.zip $UNIVERSAL_BUILD_PATH
361
+ pushd $UNIVERSAL_BUILD_PATH
362
+ zip -r $OUTPUT_DIR /libvcx-ios-${LIBVCX_VERSION} -universal.zip ./*
363
+ popd
362
364
363
365
DEVICE_BUILD_PATH=$OUTPUT_DIR /device/vcx
364
366
mkdir -p $DEVICE_BUILD_PATH
365
367
cp -rvp vcx.framework $DEVICE_BUILD_PATH
366
368
lipo -extract arm64 $DEVICE_BUILD_PATH /vcx.framework/vcx -o $DEVICE_BUILD_PATH /vcx.framework/vcx
367
- zip -r $OUTPUT_DIR /libvcx-ios-${LIBVCX_VERSION} -device.zip $DEVICE_BUILD_PATH
369
+ pushd $DEVICE_BUILD_PATH
370
+ zip -r $OUTPUT_DIR /libvcx-ios-${LIBVCX_VERSION} -device.zip ./*
371
+ popd
368
372
369
373
popd
370
374
}
You can’t perform that action at this time.
0 commit comments