summaryrefslogtreecommitdiff
path: root/platform/ios/framework/strip-frameworks.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/framework/strip-frameworks.sh')
-rwxr-xr-xplatform/ios/framework/strip-frameworks.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/platform/ios/framework/strip-frameworks.sh b/platform/ios/framework/strip-frameworks.sh
index 895cc24d5e..686541566a 100755
--- a/platform/ios/framework/strip-frameworks.sh
+++ b/platform/ios/framework/strip-frameworks.sh
@@ -71,11 +71,3 @@ for file in $(find . -type f -perm +111); do
fi
done
-# When this script finishes executing, delete itself from the built product
-function finish {
- if [[ $0 == "${BUILT_PRODUCTS_DIR}"* ]]; then
- rm -f $0;
- fi
-}
-
-trap finish EXIT