0

I am changing project name in the Xcode and am getting this error message. Anyone have idea what's wrong?

I was following steps from here.

Code Signing /Users/x/Library/Developer/Xcode/DerivedData/proj-eupelvbeoecrkahfdrteulakjggo/Build/Products/Debug-iphonesimulator/proj.app/Frameworks/Alamofire.framework with Identity -
/usr/bin/codesign --force --sign -  --preserve-metadata=identifier,entitlements '/Users/x/Library/Developer/Xcode/DerivedData/proj-eupelvbeoecrkahfdrteulakjggo/Build/Products/Debug-iphonesimulator/proj.app/Frameworks/Alamofire.framework'
/Users/x/repos/wayd-dev-ios/proj/Pods/Target Support Files/Pods-proj/Pods-proj-frameworks.sh: eval: line 123: unexpected EOF while looking for matching `''
Command PhaseScriptExecution failed with a nonzero exit code
jscs
  • 63,694
  • 13
  • 151
  • 195
Megool
  • 963
  • 2
  • 8
  • 29

2 Answers2

2

The problem was that I had an apostrophe in my packaging->produc name. I removed it and it built.

Megool
  • 963
  • 2
  • 8
  • 29
1

I can't tell what is the problem, but you should check if you have any missing quotation mark in the code, as mentioned in the error message

line 123: unexpected EOF while looking for matching `''

Also maybe there is a reference to a file not correct. Check spelling mistakes, capital letters... and check all the steps of the mentioned post (specially Step 4 - Rename the Build plist data)

L33MUR
  • 4,002
  • 2
  • 12
  • 27