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
8893e328
Commit
8893e328
authored
Jul 20, 2016
by
Yegor
Committed by
GitHub
Jul 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
print gen_snapshot exit code; fix a missing type annotation (#4976)
parent
57b76a05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
build_aot.dart
packages/flutter_tools/lib/src/commands/build_aot.dart
+2
-1
devices.dart
packages/flutter_tools/lib/src/ios/devices.dart
+1
-1
No files found.
packages/flutter_tools/lib/src/commands/build_aot.dart
View file @
8893e328
...
...
@@ -256,7 +256,8 @@ Future<String> _buildAotSnapshot(
RunResult
results
=
await
runAsync
(
genSnapshotCmd
);
if
(
results
.
exitCode
!=
0
)
{
printStatus
(
results
.
toString
());
printError
(
'Dart snapshot generator failed with exit code
${results.exitCode}
'
);
printError
(
results
.
toString
());
return
null
;
}
...
...
packages/flutter_tools/lib/src/ios/devices.dart
View file @
8893e328
...
...
@@ -260,7 +260,7 @@ class IOSDevice extends Device {
forwardDiagPort
=
_acquireAndForwardPort
(
ProtocolDiscovery
.
kDiagnosticService
,
debuggingOptions
.
diagnosticPort
);
}
else
{
forwardDiagPort
=
new
Future
.
value
(
null
);
forwardDiagPort
=
new
Future
<
int
>
.
value
(
null
);
}
return
Future
.
wait
(<
Future
<
int
>>[
forwardObsPort
,
forwardDiagPort
]);
...
...
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