We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2e31d0 commit d6b6417Copy full SHA for d6b6417
bin/raygun_cli.dart
@@ -23,8 +23,8 @@ ArgParser buildParser() {
23
help: 'Print the tool version.',
24
)
25
..addCommand(
26
- kSourcemapCommand,
27
- buildParserSourcemap(),
+ sourcemapCommand.name,
+ sourcemapCommand.buildParser(),
28
29
30
symbolsCommand.name,
@@ -71,8 +71,8 @@ void main(List<String> arguments) {
71
verbose = true;
72
}
73
74
- if (results.command?.name == kSourcemapCommand) {
75
- parseSourcemapCommand(results.command!, verbose);
+ if (results.command?.name == sourcemapCommand.name) {
+ sourcemapCommand.execute(results.command!, verbose);
76
return;
77
78
0 commit comments