Frontend: Fix help cli-option.

Move check for "help" cli-option to beginning to not fail when none of "input" and "launch_menu" are present.
This commit is contained in:
Your Name 2025-01-11 00:27:22 +01:00
parent c2e483deab
commit 6fb5029f7d

View file

@ -138,7 +138,10 @@ int main(int argc, char* argv[]) {
bpo::variables_map vm;
try {
bpo::store(bpo::command_line_parser(argc, argv).options(desc).positional(p).run(), vm);
if (vm.count("help")) {
std::cout << desc << std::endl;
return 0;
}
if (!vm.count("input") && !vm["launch_menu"].as<bool>())
throw bpo::required_option("input or launch_menu"); // TODO: Better string?
@ -160,10 +163,7 @@ int main(int argc, char* argv[]) {
return 1;
}
if (vm.count("help")) {
std::cout << desc << std::endl;
return 0;
}
// Prefer XDG_DATA_DIRS, then /usr/local/share, then /usr/share
auto xdg_data_dirs = getenv("XDG_DATA_DIRS");