From 5e1b96452948bc247516f596dcbf42aa97b8c8a1 Mon Sep 17 00:00:00 2001 From: Mikhail Date: Wed, 11 Dec 2024 11:25:05 +0100 Subject: [PATCH] GO-4639 Fix ios 15 rights (#1930) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 58a5418fd..7a8f3019f 100644 --- a/Makefile +++ b/Makefile @@ -137,10 +137,12 @@ endif @cp pkg/lib/bundle/internal*.json dist/ios/json/ @go mod tidy @echo 'Repacking iOS framework...' + chmod -R 755 dist/ios/Lib.xcframework @go run cmd/iosrepack/main.go install-dev-ios: setup-go build-ios protos-swift @echo 'Installing iOS framework locally at $(CLIENT_IOS_PATH)...' + @chmod -R 755 $(CLIENT_IOS_PATH)/Dependencies/Middleware/Lib.xcframework @rm -rf $(CLIENT_IOS_PATH)/Dependencies/Middleware/* @cp -r dist/ios/Lib.xcframework $(CLIENT_IOS_PATH)/Dependencies/Middleware @rm -rf $(CLIENT_IOS_PATH)/Modules/ProtobufMessages/Sources/Protocol/*