Skip to content

Commit d6b6417

Browse files
committed
update bin
1 parent c2e31d0 commit d6b6417

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/raygun_cli.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ ArgParser buildParser() {
2323
help: 'Print the tool version.',
2424
)
2525
..addCommand(
26-
kSourcemapCommand,
27-
buildParserSourcemap(),
26+
sourcemapCommand.name,
27+
sourcemapCommand.buildParser(),
2828
)
2929
..addCommand(
3030
symbolsCommand.name,
@@ -71,8 +71,8 @@ void main(List<String> arguments) {
7171
verbose = true;
7272
}
7373

74-
if (results.command?.name == kSourcemapCommand) {
75-
parseSourcemapCommand(results.command!, verbose);
74+
if (results.command?.name == sourcemapCommand.name) {
75+
sourcemapCommand.execute(results.command!, verbose);
7676
return;
7777
}
7878

0 commit comments

Comments
 (0)