打测试包的时候,提示Command PhaseScriptExecution failed with a nonzero exit code错误。
找到/Pods/Target Support Files/Pods-Runner/Pods-你的项目-frameworks.sh
将
1 | source="$(readlink "${source}")" |
改为
1 | source="$(readlink -f "${source}")" |
参考
Resolving “Command PhaseScriptExecution failed with a nonzero exit code” Error in Xcode