sarriaroman / FabricPlugin

Fabric.io plugin for Cordova or Phonegap
MIT License
198 stars 159 forks source link

Shell Script not replacing the environment variable #102

Closed mci92 closed 6 years ago

mci92 commented 6 years ago

Hi guys,

I tried your plugin on a ios cordova application, after adding the plugin I got a build error from the shell script the plugin added. The shell script looked like

/${SRCROOT}/"Test"/Plugins/cordova-fabric-plugin/Fabric.framework/run ...

In order to make it work, I moved the quote from the left of the application name to the left on the dollar sign, now it's looking like this:

/"${SRCROOT}/Test"/Plugins/cordova-fabric-plugin/Fabric.framework/run ...

I am not sure if the environment variables should be included in a string but this seems to be the problem.

I'm using: Cordova 6.5.0 Cordova ios 4.4.0 Xcode 8.3.3

Thanks, Cosmin