Unverified Commit 351ccf7e authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Better error message when export options plist does not a fix (#68826)

parent aea07079
......@@ -102,7 +102,7 @@ class BuildIOSArchiveCommand extends _BuildIOSSubCommand {
final FileSystemEntityType type = globals.fs.typeSync(exportOptionsPlist);
if (type == FileSystemEntityType.notFound) {
throwToolExit(
'"$exportOptionsPlist" property list does not exist. See "man xcodebuild" for available keys.');
'"$exportOptionsPlist" property list does not exist.');
} else if (type != FileSystemEntityType.file) {
throwToolExit(
'"$exportOptionsPlist" is not a file. See "xcodebuild -h" for available keys.');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment