occasionally we are seeing the following "error" when building our iOS app on the command line:
2014-04-09 13:23:35.393 xcodebuild[2872:3d2f] DeveloperPortal: Using pre-existing current store at URL (file:///Users/build/Library/Developer/Xcode/DeveloperPortal%205.0.2.db).
The reason I put the word "error" in quotes is because the build doesn't seem to fail when we see this happen. It is causing an issue because our automated build sees this message on stderr and treats it as a build failure. If I modify our build tool to ignore this specific message, then I have been able to test the build thus generated and it seems to be ok.
I'm really looking for some kind of idea as to why this message is happening and how to stop it.
Things that I've tried:
- google the message above - a few hits, but nothing providing insight
- delete the "DeveloperPortal" file - the file is created automatically with the next build and the same error message appears
- clear xcode cache (How to Empty Caches and Clean All Targets Xcode 4) - the error still occurs
- clean xcode DerivedData folder (http://useyourloaf.com/blog/2011/09/14/xcode-4-deriveddata-and-cleaning-the-build-directory.html) - the error still occurs
thanks