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
55beaef7
Commit
55beaef7
authored
Jan 13, 2017
by
Todd Volkert
Committed by
GitHub
Jan 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore only ENOTTY when setting stdin.lineMode (#7472)
parent
3c33bb46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
logger.dart
packages/flutter_tools/lib/src/base/logger.dart
+15
-2
No files found.
packages/flutter_tools/lib/src/base/logger.dart
View file @
55beaef7
...
...
@@ -214,6 +214,8 @@ class AnsiTerminal {
static
const
String
_reset
=
'
\
u001B[0m'
;
static
const
String
_clear
=
'
\
u001B[2J
\
u001B[H'
;
static
const
int
_ENOTTY
=
25
;
bool
supportsColor
;
String
bolden
(
String
str
)
=>
supportsColor
?
'
$_bold$str$_reset
'
:
str
;
...
...
@@ -223,8 +225,19 @@ class AnsiTerminal {
set
singleCharMode
(
bool
value
)
{
try
{
stdin
.
lineMode
=
!
value
;
}
on
IOException
{
// This can throw for some terminals; we ignore the error.
}
catch
(
error
)
{
// TODO(tvolkert): Change this to explicitly catch `StdinException`
// once our analysis runs against SDK 1.22 (when `StdinException` was
// introduced). Doing so will allow proper dereferencing of `osError`.
bool
ignore
=
false
;
try
{
if
(
error
.
osError
?.
errorCode
==
_ENOTTY
)
{
// This can throw for some terminals; we ignore the error.
ignore
=
true
;
}
}
on
NoSuchMethodError
{}
if
(!
ignore
)
rethrow
;
}
}
...
...
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