OTHER_CODE_SIGN_FLAGS keychain flag ignored?
问题 I have just learned about the possibility to use OTHER_CODE_SIGN_FLAGS to specify the keychain which includes the cert needed for building and signing an app. But unfortunately I cannot get it to work. My script looks something like this: #!/bin/bash TARGET="MyProject" CONFIGURATION="Release" SDK="iphoneos" IDENTITY="iPhone Developer: John Doe (XX22RR22O)" KEYCHAIN="/Users/username/Library/Keychains/someKeyChain.keychain" PASSWORD="" security unlock-keychain -p ${PASSWORD} ${KEYCHAIN}