Xcode打包失败出现:Command PhaseScriptE
2023-07-19 本文已影响0人
娜尔丶
Xcode打包失败出现:Command PhaseScriptExecution failed with a nonzero exit code” on “(readlink "(readlink "(readlink -f "${source}")" 再次Archive,打包成功
Search for the following line in your XCode project:
source="$(readlink "${source}")"
Now, replace all of its ocurrences with the following code:
source="$(readlink -f "${source}")"
That should do the trick while we get to know more about this issue.