https://github.com/CocoaPods/CocoaPods/issues/11808
Upgrade from Xcode 14.2 to 14.3 rsync: link_stat failed: No such file or directory (2) for pods that were working earlier. #11808
Workaround is to update all the generated ...-frameworks.sh files to add the -f flag to the call to readlink. In other words, replace
source="{source}")"
with
source="{source}")"
This is my first time contributing to CocoaPods though, so take it with a grain of salt!
Pods-项目名-frameworks.sh文件:
source="$(readlink "${source}")"
替换为
source="$(readlink -f "${source}")"真的有效。Xcode14.3可以正常Archive !
[@chrisvasselli](https://github.com/chrisvasselli) 非常感谢您做的贡献。