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
03249231
Commit
03249231
authored
Feb 28, 2017
by
Todd Volkert
Committed by
GitHub
Feb 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add courtesy notice about bug reports containing sensitive info (#8447)
parent
e85d3792
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
flutter_command_runner.dart
.../flutter_tools/lib/src/runner/flutter_command_runner.dart
+7
-2
No files found.
packages/flutter_tools/lib/src/runner/flutter_command_runner.dart
View file @
03249231
...
...
@@ -70,7 +70,9 @@ class FlutterCommandRunner extends CommandRunner<Null> {
help:
'Suppress analytics reporting when this command runs.'
);
argParser
.
addFlag
(
'bug-report'
,
negatable:
false
,
help:
'Captures a bug report file to submit to the Flutter team.'
);
help:
'Captures a bug report file to submit to the Flutter team '
'(contains local paths, device identifiers, and log snippets).'
);
String
packagesHelp
;
if
(
fs
.
isFileSync
(
kPackagesFileName
))
...
...
@@ -188,7 +190,10 @@ class FlutterCommandRunner extends CommandRunner<Null> {
addShutdownHook
(()
async
{
File
zipFile
=
getUniqueFile
(
fs
.
currentDirectory
,
'bugreport'
,
'zip'
);
os
.
zip
(
tmp
,
zipFile
);
printStatus
(
'Bug report written to
${zipFile.basename}
'
);
printStatus
(
'Bug report written to
${zipFile.basename}
.
\n
'
'Note that this bug report contains local paths, device '
'identifiers, and log snippets.'
);
},
ShutdownStage
.
POST_PROCESS_RECORDING
);
addShutdownHook
(()
=>
tmp
.
delete
(
recursive:
true
),
ShutdownStage
.
CLEANUP
);
}
...
...
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