Upgrading xcode14.3 package error Command PhaseScriptExecution failed with a nonzero exit code

After upgrading to xcode14.3, an error occurred after packaging the project:
rsync error: some files could not be transferred (code 23) at …/rsync/main.c(996)
Command PhaseScriptExecution failed with a nonzero exit code

Solution:
Search for Pods -> Targets Support Files -> Pods-project name -> Pods-project name-frameworks.sh in the Xcode project directory source="$(readlink "${source}")", replace it with source="$(readlink -f "${source}")", and then repackage.
Insert image description here

Guess you like

Origin blog.csdn.net/bangtanhui/article/details/130574682