skip to Main Content

I am getting Command PhaseScriptExecution failed with a nonzero exit code after updating to XCode 14.3.
Earlier it was working fine. Tried multiple solutions still result is same.

2

Answers


  1. Chosen as BEST ANSWER

    Workaround is to update all the generated ...-frameworks.sh files to add the -f flag to the call to readlink. In other words, need to replace:

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

    with

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

    Seems this is CocoaPods issue...


  2. I had a similar problem after the update. Updating Cocoapods and the CryptoSwift helped in my case. Try to update everything as well.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search