Megool
Megool

Reputation: 999

Error message after changing Xcode project name

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

Upvotes: 0

Views: 297

Answers (2)

Megool
Megool

Reputation: 999

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

Upvotes: 2

L33MUR
L33MUR

Reputation: 4058

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)

Upvotes: 1

Related Questions