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
71c8a96f
Commit
71c8a96f
authored
Feb 23, 2016
by
Hixie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix --debug
...and some style nits.
parent
3f8fdb66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
15 deletions
+13
-15
flutter_command_runner.dart
.../flutter_tools/lib/src/runner/flutter_command_runner.dart
+13
-15
No files found.
packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
View file @
71c8a96f
...
...
@@ -123,10 +123,11 @@ class FlutterCommandRunner extends CommandRunner {
defaultsTo:
'out/ios_sim_Release/'
);
}
String
get
usageFooter
=>
'Run "flutter -h -v" for verbose help output, including less commonly used options.
\n
'
'
\n
'
'
${doctor.summaryText}
'
;
String
get
usageFooter
{
return
'Run "flutter -h -v" for verbose help output, including less commonly used options.
\n
'
'
\n
'
'
${doctor.summaryText}
'
;
}
List
<
BuildConfiguration
>
get
buildConfigurations
{
if
(
_buildConfigurations
==
null
)
...
...
@@ -136,21 +137,17 @@ class FlutterCommandRunner extends CommandRunner {
List
<
BuildConfiguration
>
_buildConfigurations
;
String
get
enginePath
{
if
(!
_enginePathSet
)
{
_enginePath
=
_findEnginePath
(
_globalResults
);
_enginePathSet
=
true
;
}
assert
(
ArtifactStore
.
flutterRoot
!=
null
);
_enginePath
??=
_findEnginePath
(
_globalResults
);
return
_enginePath
;
}
String
_enginePath
;
bool
_enginePathSet
=
false
;
ArgResults
_globalResults
;
String
get
_defaultFlutterRoot
{
if
(
Platform
.
environment
.
containsKey
(
kFlutterRootEnvironmentVariableName
))
return
Platform
.
environment
[
kFlutterRootEnvironmentVariableName
];
try
{
String
script
=
Platform
.
script
.
toFilePath
();
if
(
path
.
basename
(
script
)
==
kSnapshotFileName
)
...
...
@@ -170,6 +167,12 @@ class FlutterCommandRunner extends CommandRunner {
if
(
globalResults
[
'verbose'
])
logger
.
verbose
=
true
;
// we must set ArtifactStore.flutterRoot early because other features use it
// (e.g. enginePath's initialiser uses it)
ArtifactStore
.
flutterRoot
=
path
.
normalize
(
path
.
absolute
(
globalResults
[
'flutter-root'
]));
if
(
globalResults
.
wasParsed
(
'package-root'
))
ArtifactStore
.
packageRoot
=
path
.
normalize
(
path
.
absolute
(
globalResults
[
'package-root'
]));
// See if the user specified a specific device.
deviceManager
.
specifiedDeviceId
=
globalResults
[
'device-id'
];
...
...
@@ -184,15 +187,10 @@ class FlutterCommandRunner extends CommandRunner {
if
(
androidSdk
!=
null
)
{
printTrace
(
'Using Android SDK at
${androidSdk.directory}
.'
);
if
(
androidSdk
.
latestVersion
!=
null
)
printTrace
(
'
${androidSdk.latestVersion}
'
);
}
ArtifactStore
.
flutterRoot
=
path
.
normalize
(
path
.
absolute
(
globalResults
[
'flutter-root'
]));
if
(
globalResults
.
wasParsed
(
'package-root'
))
ArtifactStore
.
packageRoot
=
path
.
normalize
(
path
.
absolute
(
globalResults
[
'package-root'
]));
if
(
globalResults
[
'version'
])
{
printStatus
(
getVersion
(
ArtifactStore
.
flutterRoot
));
printStatus
(
''
);
...
...
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