构建是可能的,但在使用Xcode中使用Cocoapods时,存档会失败
#ios #swift #xcode

我根本不知道Swift或Xcode,这是一个提醒。 (这可能不是基本解决方案,但它是急救措施。)

我有以下错误并对其进行了彻底的研究。

Image description

sent 29 bytes received 20 bytes 98.00 bytes/sec
total size is 0 speedup is 0.00
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/hogehogehogehoge/Library/Caches/com.apple.xbs /Sources/rsync/rsync/main.c(996) [sender=2.6.9].
Command PhaseScriptExecution failed with a nonzero exit code

我浏览了Stackoverflow,无法弄清楚发生了什么。但是我找到了一种存档文件的方法。
修复/Pods/Target Support Files/{Proj Name}/Pods-{Proj Name}-frameworks.sh的以下部分。

  if [ -L "${source}" ]; then
    echo "Symlinked..."
- source="$(readlink "${source}")"
+ source="$(readlink -f "${source}")"
  fi

Image description