iOS-bug Xcode 14.3 archive打包失败,command PhasescriptExecution failed with a nonzero exit code

question

After upgrading to Xcode14.3, the packaging has the following problems

command PhasescriptExecution failed with a nonzero exit code

solution 

1. Find the path file in Xcode, Pods/Targets Support Files/Pods-xxxxx/Pods-xxxx-frameworks.sh

2. Find source ="$(readlink "${source}")" 

Change to source ="$(readlink -f "${source}")"

3. After the modification is completed, re-archive will be successful, and the personal test will be effective.

Guess you like

Origin blog.csdn.net/qq_43441647/article/details/130010056