Xcode 14: Command PhaseScriptExecution failed with a nonzero exit code

Search for the following line in your project, it must be in ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh file.

source="$(readlink "${source}")"

Replace that with:

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

Leave a Comment