I am using xcodebuild
command line tool to create an archive and then export as IPA file, for my iOS project.
By default, while using xcodebuild -exportArchive
, it creates the IPA file which has the same label as the scheme
selected for building.
Is there anyway to change the output IPA file name while using xcodebuild -exportArchive
from command line?
Any help will be greatly appreciated. Thanks.
mv
its default name to whatever I need by my CI build script. – Bradbradan