From 60a468d50b17e535a44a686b266781dfadf94cd0 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 18 Aug 2023 11:26:53 -0400 Subject: [PATCH] sql: Change the short-name flag for the SQLServer path The short-name 's' is duplicated by another option. --- Userland/Utilities/sql.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/sql.cpp b/Userland/Utilities/sql.cpp index 92253129f52..cdb6eff2326 100644 --- a/Userland/Utilities/sql.cpp +++ b/Userland/Utilities/sql.cpp @@ -350,7 +350,7 @@ ErrorOr serenity_main(Main::Arguments arguments) args_parser.add_option(file_to_source, "File to source", "source", 's', "file"); args_parser.add_option(suppress_sqlrc, "Don't read ~/.sqlrc", "no-sqlrc", 'n'); #if !defined(AK_OS_SERENITY) - args_parser.add_option(sql_server_path, "Path to SQLServer to launch if needed", "sql-server-path", 's', "path"); + args_parser.add_option(sql_server_path, "Path to SQLServer to launch if needed", "sql-server-path", 'p', "path"); #endif args_parser.parse(arguments);