Shell Script Call Error with Crashlytics Xcode 8

When I try to run a script in my xcode 8 project, I get this error

Shell script Call error

I know how to install fabric in xcode, I have successfully installed in xcode 7 in numerous projects without problems. But now in a new project in xcode 8 I get this error.

When I delete the script, there is no error at all.

The script has the following style.

/bin/sh
${PODS_ROOT}/Fabric/run API KEY OTHERKEY

I tried to navigate inside the Fabric folder of my Pod and ran this command

chmod 755 run
chmod 755 upload-symbols
chmod 755 uploadDSYM

Bad luck. Any idea?

PS

next error

/Users/kwstasna/Library/Developer/Xcode/DerivedData/APPNAME-fmbbqrezzwnumzdatywvlcxvqdob/Build/Intermediates/APPNAME.build/Debug-iphoneos/APPNAME.build/Script-6EA07B731D93E6ED00FD0CE8.sh: line 2: /Users/kwstasna/Desktop/open: No such file or directory
+4
source share
2 answers

So I changed

${PODS_ROOT}/Fabric/run

to

"${PODS_ROOT}/Fabric/run"

On macOS Sierra beta.

+14
source

CocoaPods script - :

/Library//Xcode/DerivedData/......./Pods/Fabric/Fabric.framework/run:

,

0

Source: https://habr.com/ru/post/1655456/


All Articles