Skip to content

Commit e8fc89e

Browse files
authored
Redundant message fix (#143978)
Saying that the commands only work on macOS is redundant because the command is only shown on macOS hosts.
1 parent ece6ac2 commit e8fc89e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class BuildIOSCommand extends _BuildIOSSubCommand {
5252
final String name = 'ios';
5353

5454
@override
55-
final String description = 'Build an iOS application bundle (macOS host only).';
55+
final String description = 'Build an iOS application bundle.';
5656

5757
@override
5858
final XcodeBuildAction xcodeBuildAction = XcodeBuildAction.build;
@@ -129,7 +129,7 @@ class BuildIOSArchiveCommand extends _BuildIOSSubCommand {
129129
final List<String> aliases = <String>['xcarchive'];
130130

131131
@override
132-
final String description = 'Build an iOS archive bundle and IPA for distribution (macOS host only).';
132+
final String description = 'Build an iOS archive bundle and IPA for distribution.';
133133

134134
@override
135135
final XcodeBuildAction xcodeBuildAction = XcodeBuildAction.archive;

0 commit comments

Comments
 (0)