We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea0707 commit 351ccf7Copy full SHA for 351ccf7
packages/flutter_tools/lib/src/commands/build_ios.dart
@@ -102,7 +102,7 @@ class BuildIOSArchiveCommand extends _BuildIOSSubCommand {
102
final FileSystemEntityType type = globals.fs.typeSync(exportOptionsPlist);
103
if (type == FileSystemEntityType.notFound) {
104
throwToolExit(
105
- '"$exportOptionsPlist" property list does not exist. See "man xcodebuild" for available keys.');
+ '"$exportOptionsPlist" property list does not exist.');
106
} else if (type != FileSystemEntityType.file) {
107
108
'"$exportOptionsPlist" is not a file. See "xcodebuild -h" for available keys.');
0 commit comments