I\'m trying to create an IPA in Xcode 4, much like the person who asked this question:
Xcode 4: create IPA file instead of .xcarchive
So--I got my Archive co
Had the same problem in Xcode 4.6.1 but with the twist that the Archive did show quickly in the Organizer window but suddenly disappeared.
Solved this problem by commenting out the last two lines:
echo "Moving Archive: $ARCHIVE_PATH to $PROJECT_DIR"
#rm -rf "$PROJECT_DIR/XX.xcarchive"
#mv -f "$ARCHIVE_PATH" "$PROJECT_DIR/XX.xcarchive"
This via "Product - Scheme - Edit Scheme - Archive - Post Actions".