【搬运工】xcode 14.3 Archive时,Cocopods错误rsync error: some files could not be transfer

184 阅读1分钟
  • xcode 14.3 Archive时,Cocopod报错误信息:

    rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/...

    • 解决方案:修改/ios/Pods/Target Support Files/Pods/Pods-AppName-frameworks.sh,Replace in *-frameworks.sh files:

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

      变成

      source="$(readlink -f "${source}")"
      
    • 来源:stack overflow