Skip to content

Commit 753590e

Browse files
committed
Update
1 parent 8839c68 commit 753590e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/src/generate_screen_access/app.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import 'generator.dart';
1818
/// A command line app for generating screen access.
1919
Future<void> generateScreenAccessApp(List<String> args) async {
2020
await runCommandLineApp(
21-
title: 'Generate Screens',
22-
description: 'A command line app for generating screens',
21+
title: 'Generate Screen Access',
22+
description: '...',
2323
args: args,
2424
parser: ArgParser()
2525
..addFlag(
@@ -44,10 +44,6 @@ Future<void> generateScreenAccessApp(List<String> args) async {
4444
abbr: 'p',
4545
help: 'Path patterns separated by `&`.',
4646
)
47-
..addOption(
48-
'additional-screen-class-names',
49-
help: 'Additional screen class names separated by `&`.',
50-
)
5147
..addOption(
5248
'template',
5349
abbr: 't',
@@ -58,6 +54,10 @@ Future<void> generateScreenAccessApp(List<String> args) async {
5854
abbr: 'o',
5955
help: 'Output file path.',
6056
defaultsTo: '.',
57+
)
58+
..addOption(
59+
'dart-sdk',
60+
help: 'Dart SDK path.',
6161
),
6262
onResults: (parser, results) {
6363
return _ArgsChecker(

0 commit comments

Comments
 (0)