Skip to content

YingZheng02590218/iKingdom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

iKingdom

2019.11.30 Start a project

エラーが発生した場合の解決方法

・「Command PhaseScriptExecution failed with a nonzero exit code」 次のファイルの1行を修正するだけです。
Pods > Targets Support Files > Pods-[プロジェクト名] > Pods-[プロジェクト名]-frameworks.sh
上記のファイルの 42〜45行目 を次のように修正すればOKです。

  if [ -L "${source}" ]; then
    echo "Symlinked..."
    # source="$(readlink "${source}")"   ←コメントアウト
    source="$(readlink -f "${source}")"  ←追加
  fi