Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 8 Shell Script Invocation Error

I'm trying to fix this issue for hours, but it still persists. Tried everything on the forums, nothing helped. I'm using Cocoapods latest version 1.2.0.beta.1 When I try to build the project, it gives me this: enter image description here

like image 314
sphynx Avatar asked Oct 30 '16 12:10

sphynx


2 Answers

For me (Xcode 9) pod install on its own did not fix it. Tried it with:

pod deintegrate
pod install

And the error disappeared.

You might also want to consider deleting the derived data folders for this project. The location of DerivedData is in your error log.

like image 172
spijs Avatar answered Oct 17 '22 09:10

spijs


Here is what I did to remove this error. Please try with below:

  1. Click on main project file.
  2. Goto the Build Phases.
  3. Click on run Script and delete any given path in it so that it does not try to find some framework that has been deleted by you.

I had this problem when I used to check the crash Analytics with the different frameworks like "Test Fairy".

Hope this works. :)

like image 26
saj Avatar answered Oct 17 '22 09:10

saj