fixup! analyzer: add help and long options to cli

This commit is contained in:
redthing1
2025-05-27 22:55:16 -07:00
parent 54bdb2c373
commit b057943751

View File

@@ -479,14 +479,14 @@ int main(const int argc, char** argv)
try
{
auto args = bundle_arguments(argc, argv);
const auto options = parse_options(args);
if (args.empty() && options.dump.empty())
if (args.empty())
{
print_help();
return 1;
}
const auto options = parse_options(args);
bool result{};
do