0

I have added Fabric framework into my project manually before, and then deleted. This error showed up at the compile time:

/Users/user/Library/Developer/Xcode/DerivedData/Project-hityylzihqrkrscmfhbjcpmsmbhv/Build/Intermediates/Project.build/Debug-iphonesimulator/Project.build/Script-*****************************.sh: line 2: ./Fabric.framework/run: Permission denied

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
sudama
  • 1
  • 1
  • 2
  • Your question needs to be edited. What do you seek to achieve and what did you tried in order to resolve it? – nyedidikeke Oct 09 '16 at 09:15
  • Welcome to Stack Overflow! Please review [how to ask](http://stackoverflow.com/help/how-to-ask) to improve your question. Post the code you have tried. Be as specific as possible as it will lead to better answers. – David Oct 09 '16 at 10:49

1 Answers1

1

Looks like the execute flag on that script has been lost. Go to the command line and do:

$ cd /path/to/project/path/to/Fabric.framework
$ chmod 0755 run
Droppy
  • 9,691
  • 1
  • 20
  • 27