Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
70a88c3b
Unverified
Commit
70a88c3b
authored
Jun 08, 2020
by
Jonah Williams
Committed by
GitHub
Jun 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] fix capitalization in build commands (#58842)
parent
4f88ed1d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
build_linux.dart
packages/flutter_tools/lib/src/commands/build_linux.dart
+1
-1
build_macos.dart
packages/flutter_tools/lib/src/commands/build_macos.dart
+1
-1
build_web.dart
packages/flutter_tools/lib/src/commands/build_web.dart
+1
-1
build_windows.dart
packages/flutter_tools/lib/src/commands/build_windows.dart
+1
-1
No files found.
packages/flutter_tools/lib/src/commands/build_linux.dart
View file @
70a88c3b
...
...
@@ -43,7 +43,7 @@ class BuildLinuxCommand extends BuildSubCommand {
};
@override
String
get
description
=>
'
build the Linux desktop target
.'
;
String
get
description
=>
'
Build a Linux desktop application
.'
;
@override
Future
<
FlutterCommandResult
>
runCommand
()
async
{
...
...
packages/flutter_tools/lib/src/commands/build_macos.dart
View file @
70a88c3b
...
...
@@ -44,7 +44,7 @@ class BuildMacosCommand extends BuildSubCommand {
};
@override
String
get
description
=>
'
build the macOS desktop target
.'
;
String
get
description
=>
'
Build a macOS desktop application
.'
;
@override
Future
<
FlutterCommandResult
>
runCommand
()
async
{
...
...
packages/flutter_tools/lib/src/commands/build_web.dart
View file @
70a88c3b
...
...
@@ -53,7 +53,7 @@ class BuildWebCommand extends BuildSubCommand {
bool
get
hidden
=>
!
featureFlags
.
isWebEnabled
;
@override
final
String
description
=
'
b
uild a web application bundle.'
;
final
String
description
=
'
B
uild a web application bundle.'
;
@override
Future
<
FlutterCommandResult
>
runCommand
()
async
{
...
...
packages/flutter_tools/lib/src/commands/build_windows.dart
View file @
70a88c3b
...
...
@@ -45,7 +45,7 @@ class BuildWindowsCommand extends BuildSubCommand {
};
@override
String
get
description
=>
'
build the desktop Windows target
.'
;
String
get
description
=>
'
Build a Windows desktop application
.'
;
@visibleForTesting
VisualStudio
visualStudioOverride
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment