File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -59,13 +59,15 @@ void main(List<String> args) async {
59
59
commandHandler.execute (command);
60
60
} else {
61
61
stderr.writeln ('Unknown command: ${command .name }' );
62
- stdout.writeln ('Available commands: ${CommandRegistry .commandNames .join (', ' )}' );
62
+ stdout.writeln (
63
+ 'Available commands: ${CommandRegistry .commandNames .join (', ' )}' );
63
64
exit (1 );
64
65
}
65
66
} else {
66
67
stderr.writeln ('No applicable command found' );
67
68
stdout.writeln ('Usage: instabug [options] <command>' );
68
- stdout.writeln ('Available commands: ${CommandRegistry .commandNames .join (', ' )}' );
69
+ stdout.writeln (
70
+ 'Available commands: ${CommandRegistry .commandNames .join (', ' )}' );
69
71
stdout.writeln ('For help on a specific command:' );
70
72
stdout.writeln (' instabug <command> --help' );
71
73
stdout.writeln (parser.usage);
You can’t perform that action at this time.
0 commit comments