Skip to content

Commit 351ccf7

Browse files
authored
Better error message when export options plist does not a fix (flutter#68826)
1 parent aea0707 commit 351ccf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/flutter_tools/lib/src/commands/build_ios.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class BuildIOSArchiveCommand extends _BuildIOSSubCommand {
102102
final FileSystemEntityType type = globals.fs.typeSync(exportOptionsPlist);
103103
if (type == FileSystemEntityType.notFound) {
104104
throwToolExit(
105-
'"$exportOptionsPlist" property list does not exist. See "man xcodebuild" for available keys.');
105+
'"$exportOptionsPlist" property list does not exist.');
106106
} else if (type != FileSystemEntityType.file) {
107107
throwToolExit(
108108
'"$exportOptionsPlist" is not a file. See "xcodebuild -h" for available keys.');

0 commit comments

Comments
 (0)