From 366fdfc2cc6f62c117446ac9eec9f1e2dfabb51e Mon Sep 17 00:00:00 2001 From: Cube <80874613+devcube9@users.noreply.github.com> Date: Sun, 28 Sep 2025 15:51:16 +0800 Subject: [PATCH] Update usymtool file matching pattern in deployment script Fixes error: /build/iOS/iOS/usymtoolarm64: Permission denied --- docs/03-github/06-deployment/ios.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/03-github/06-deployment/ios.mdx b/docs/03-github/06-deployment/ios.mdx index 90812481..7866b9b4 100644 --- a/docs/03-github/06-deployment/ios.mdx +++ b/docs/03-github/06-deployment/ios.mdx @@ -485,7 +485,7 @@ jobs: eval "$(ssh-agent -s)" ssh-add - <<< "${MATCH_DEPLOY_KEY}" find $IOS_BUILD_PATH -type f -name "**.sh" -exec chmod +x {} \; - find $IOS_BUILD_PATH -type f -iname "usymtool" -exec chmod +x {} \; + find $IOS_BUILD_PATH -type f -iname "usymtool*" -exec chmod +x {} \; bundle install bundle exec fastlane ios release