Skip to content

Commit

Permalink
Added debug and release flags for the flutter command
Browse files Browse the repository at this point in the history
  • Loading branch information
Cir0X committed Oct 24, 2019
1 parent bcb4df5 commit 5a58bbe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/commands/flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ class FlutterCommand extends Command {
help: '''Suppress analytics reporting when this command runs.''')
..addFlag('bug-report',
help:
'''Captures a bug report file to submit to the Flutter team. Contains local paths, device identifiers, and log snippets.''');
'''Captures a bug report file to submit to the Flutter team. Contains local paths, device identifiers, and log snippets.''')
..addFlag('debug', help: '''Build a debug version of your app.''')
..addFlag('release',
help: '''Build a release version of your app (default mode).''');
}

Future<void> run() async {
Expand Down

0 comments on commit 5a58bbe

Please sign in to comment.