With Xcode 8.2.1, if we use
xcodebuild -exportArchive -archivePath archivePath/OurApp.xcarchive -exportPath ipaPath/OurApp (other params left out for clarity)
the generated IPA will be in ipaPath/OurApp.ipa.
With Xcode 8.3.x if we use
xcodebuild -exportArchive -archivePath archivePath/OurApp.xcarchive -exportPath ipaPath/OurApp (other params left out for clarity)
the generated IPA will be in ipaPath/OurApp/XBuild.ipa.
Does anyone know of a way to force the previous behavior (I poured over the xcodebuild parameters and didn't see anything)...?