Skip to content

Commit 9674044

Browse files
committed
chore: run dart format
1 parent d7ade1d commit 9674044

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/instabug.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ void main(List<String> args) async {
5959
commandHandler.execute(command);
6060
} else {
6161
stderr.writeln('Unknown command: ${command.name}');
62-
stdout.writeln('Available commands: ${CommandRegistry.commandNames.join(', ')}');
62+
stdout.writeln(
63+
'Available commands: ${CommandRegistry.commandNames.join(', ')}');
6364
exit(1);
6465
}
6566
} else {
6667
stderr.writeln('No applicable command found');
6768
stdout.writeln('Usage: instabug [options] <command>');
68-
stdout.writeln('Available commands: ${CommandRegistry.commandNames.join(', ')}');
69+
stdout.writeln(
70+
'Available commands: ${CommandRegistry.commandNames.join(', ')}');
6971
stdout.writeln('For help on a specific command:');
7072
stdout.writeln(' instabug <command> --help');
7173
stdout.writeln(parser.usage);

0 commit comments

Comments
 (0)