Correcting for PR comments

This commit is contained in:
Anselm Busse 2021-03-12 16:22:16 +01:00 committed by Cameron Gutman
commit 0802609fd8
6 changed files with 42 additions and 17 deletions

View file

@ -541,18 +541,22 @@ void ListCommandLineParser::parse(const QStringList &args)
parser.setupCommonOptions();
parser.setApplicationDescription(
"\n"
"List the available apps on the given host as CSV:\n"
"\tName, ID, HDR Support, App Collection Game, Hidden, Direct Launch, Path to Boxart"
"List the available apps on the given host."
);
parser.addPositionalArgument("list", "list available apps");
parser.addPositionalArgument("host", "Host computer name, UUID, or IP address", "<host>");
parser.addFlagOption("csv", "Print as CSV with additional information");
if (!parser.parse(args)) {
parser.showError(parser.errorText());
}
parser.handleUnknownOptions();
m_PrintCSV = parser.isSet("csv");
// This method will not return and terminates the process if --version or
// --help is specified
parser.handleHelpAndVersionOptions();
@ -569,3 +573,8 @@ QString ListCommandLineParser::getHost() const
{
return m_Host;
}
bool ListCommandLineParser::isPrintCSV() const
{
return m_PrintCSV;
}