Everywhere: Remove uneeded short option argument where possible

This commit is contained in:
Shannon Booth 2024-04-21 08:34:56 +12:00 committed by Andreas Kling
commit 1ec6399c00
Notes: sideshowbarker 2024-07-17 18:46:30 +09:00
21 changed files with 41 additions and 41 deletions

View file

@ -209,7 +209,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.add_option(runner_command, "Command to run", "runner-command", 'r', "command");
args_parser.add_option(pass_through_parameters, "Parameters to pass through to the runner, will split on spaces", "pass-through", 'p', "parameters");
args_parser.add_option(dont_print_progress, "Hide progress information", "quiet", 'q');
args_parser.add_option(dont_disable_core_dump, "Enabled core dumps for runner (i.e. don't pass --disable-core-dump)", "enable-core-dumps", 0);
args_parser.add_option(dont_disable_core_dump, "Enabled core dumps for runner (i.e. don't pass --disable-core-dump)", "enable-core-dumps");
args_parser.parse(arguments);
// Normalize the path to ensure filenames are consistent