how to fix the issue "Command /bin/sh failed with exit code 1" in iphone

IphoneShellIos6xcode4.5Build Error

Iphone Problem Overview


I used a cocoa static library in my application. When I compile my library I got the following error:

Shell Script invocation error:can't open input file:
/Users/sijuthomas/Library/Developer/Xcode/DerivedData/SCXML2-
    bbttehupryhijphhjdiemcytkvgy/Build/Products/Debug-iphonesimulator/
    libSCXMLParser.a (No such file or directory)
Command /bin/sh failed with exit code 1

Screenshot for error

How can I fix this?

Iphone Solutions


Solution 1 - Iphone

 Target -> Build-Phases -> update examples

Click On Run checkbox if not selected.

Solution 2 - Iphone

I had this issue because i denied keychain access and in order to solve it you need to open keychain, Then click on the lock on top right of the screen to lock it again, after that you can archive and it will work

Solution 3 - Iphone

Deleting "Derived Data" worked for me.

In Xcode go to File > Workspace Settings > Click the arrow next to the Derived Data file path > move the "Derived Data" folder to the trash.

Solution 4 - Iphone

Seems you are running a shell script and it can't find your specific file. Look at Target -> Build-Phases -> RunScript if you are running a script.

You can check if a script is running in your build output (in the navigator panel). If your script does something wrong, the build-phase will stop.

Solution 5 - Iphone

I had same issue got it fixed. Use below steps to resolve issue in Xcode 6.4.

  1. Click on Show project navigator in Navigator window
  2. Now Select project immediately below navigator window
  3. Select Targets
  4. Select Build Phases tab
  5. Open Run Script drop-down option
  6. Select Run script only when installing checkbox

Screenshot for steps

Now, clean your project (cmd+shift+k) and build your project.

Solution 6 - Iphone

Cleaning the build folder (Cmd + Shift + Alt + K) worked for me

Solution 7 - Iphone

  1. Delete the pod folder and .xcworkspace file
  2. Open the folder in terminal
  3. Type "pod install"

Solution 8 - Iphone

Did you add the .a library to the xcode projet ? (project -> build phases -> Link binary with libraries -> click on the '+' -> click 'add other' -> choose your library)

And maybe the library is not compatible with the simulator, did you try to compile for iDevice (not simulator) ?

(I've already fight with the second problem, I got a library that was not working with the simulator but with a real device it compiles...)

Solution 9 - Iphone

In My case there was space in the path that was failing the script.If you are using variables like $PROJECT_DIR or $TARGET_BUILD_DIR then replace them "$PROJECT_DIR" or "$TARGET_BUILD_DIR" respectively.After adding quotes my script ran successfully.

Solution 10 - Iphone

For me, my certificate is expired. I have created a new certificate.

Solution 11 - Iphone

I did all above and spent an hour on the issue.

Tried everything above as well as restarted Xcode.

Finally, restarted computer and everything working normally again!

Solution 12 - Iphone

I tried restarting Xcode (7) and nothing (the have you tried switching it off and on again of iOS development for me :-)). I then tried by restarting my box and that worked.

In my case the script was failing when copying a file from a location to another one. I think it could have been related to Finder screwing with writing rights over certain folders.

Solution 13 - Iphone

For me this error was occuring because I changed the version number from 1 to 1.0 and build number from 6 to 1.1 as I pulled the code from source tree. I just changed it back and changed the build number from 6 to 7and it worked fine.

Solution 14 - Iphone

just put your script in a file and run that file with 2>/dev/null at the end of command line!

This way, if there is a problem with the command whatsoever, it will not halt your xcode build

in my case I was running just a command to uninstall my previous copy of the app from a connected iphone, so it could give an error if the iphone is not there. To solve it:

$mobiledevice uninstall_app com.my.app 2>/dev/null

Solution 15 - Iphone

The only thing worked for me:

  1. Delete Derived Data with CleanMyMac: System Junk -> Xcode Junk -> Xcode Derived Data

Deleting Derived Data with CleanMyMac

  1. Then in Xcode: Product -> Clean

Solution 16 - Iphone

I'll list things I did that did not work for me and finally what did

First, the accepted answer of Run script only when installing did not work.

Deleting derived data did not work.

What did work:

  1. I added a new build phase in Build Phases

  2. New Copy Files Phase

  3. Drag & Drop the chosen framework into the drop target

  4. Set the 'Destination' to Frameworks

Credit due to Kevin Le's Medium post

Solution 17 - Iphone

For those who doesn't want to uncheck that option (using cocoapods for example), the problem might be with the certificate/key.

Xcode (or whatever tool you are using, like a command line tool) needs to be able to use the certificate/key from the keychain. For this open the Keychain, locate the certificate that you want to use (Usually on login keychain, My Certificates), right click on the key, select Get Info, click on Access Control tab and add the app to the list.

If this doesn't work, try unlocking the keychain.

Another option can be select Allow all applications to access this item instead of specific apps and/or move the certificate/key to System keychain which is shared between all the user accounts on that Mac.

Also check that the certificate is not expired.

Solution 18 - Iphone

  1. option : Please check run the script only when installing......  it is right to answer of this question
  1. option : pod update, clean derive data,

Solution 19 - Iphone

In my case, one of the script (related to SwiftGen) was failing during compilation.

I fixed the issue by removing the Pods and then updating them again.

  1. Remove the problematic pod under Pods directory or use pod deintegrate
  2. Install / Update the pods using pod install or pod update

P.S. It is possible your dependency is Global and is not in pods. In that case you can also try to reinstall that dependency.

Solution 20 - Iphone

READ THIS IF YOU USE Crashlytics AND ARE HAVING THIS ISSUE...

I was having the same issue as above Command /bin/sh failed with exit code 1 more specifically [31merror: Could not fetch upload-symbols settings: An unknown error occurred fetching settings.[0m

The first solution (enabling the run script only when installing) allowed me to build my target in the simulator, but I could not archive my build.

I solved this Archive issue by enabling Crashlytics on firebase. I am still used to Fabric where Crashlytics is automatically enabled. Once I enabled Crashlytics in the firebase console for the corresponding GoogleService-Info.plist I was able to Archive without this error.

Solution 21 - Iphone

Remove all pods and install again.

Steps:

  1. comment all pods and run pod install
  2. uncomment all pods and run pod install

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBen10View Question on Stackoverflow
Solution 1 - IphoneHarshadView Answer on Stackoverflow
Solution 2 - IphoneSalem BinmusaedView Answer on Stackoverflow
Solution 3 - IphonehgwhittleView Answer on Stackoverflow
Solution 4 - IphoneMr BonjourView Answer on Stackoverflow
Solution 5 - IphoneJayprakash DubeyView Answer on Stackoverflow
Solution 6 - Iphonenb07View Answer on Stackoverflow
Solution 7 - IphoneAkilView Answer on Stackoverflow
Solution 8 - IphoneAshbayView Answer on Stackoverflow
Solution 9 - IphoneDesert RoseView Answer on Stackoverflow
Solution 10 - IphoneVincent SitView Answer on Stackoverflow
Solution 11 - IphoneLuke MccormickView Answer on Stackoverflow
Solution 12 - IphoneJuan Fran JimenezView Answer on Stackoverflow
Solution 13 - IphoneChaudhry TalhaView Answer on Stackoverflow
Solution 14 - IphoneSaeed BadranView Answer on Stackoverflow
Solution 15 - IphoneЕвгений МView Answer on Stackoverflow
Solution 16 - IphoneFullMetalFistView Answer on Stackoverflow
Solution 17 - IphonergkobashiView Answer on Stackoverflow
Solution 18 - Iphonesumit rathoreView Answer on Stackoverflow
Solution 19 - IphoneHaseeb IqbalView Answer on Stackoverflow
Solution 20 - IphoneNichlas tmView Answer on Stackoverflow
Solution 21 - IphoneMuhammadGadView Answer on Stackoverflow