From fa4aef4531d3ca138cc0c5a87768358fd5d7df7d Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 10 Apr 2023 18:26:36 +0100 Subject: [PATCH] args: print help on invalid arg --- src/main.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 99066429..9c52e66f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,9 +50,7 @@ int main(int argc, char** argv) { std::cout << "[ WARNING ] Running Hyprland with superuser privileges might damage your system\n"; ignoreSudo = true; - } - - else if (it->compare("-c") == 0 || it->compare("--config") == 0) { + } else if (it->compare("-c") == 0 || it->compare("--config") == 0) { if (std::next(it)->c_str() == nullptr) { help(); return 1; @@ -68,7 +66,13 @@ int main(int argc, char** argv) { configPath = next_arg; Debug::log(LOG, "User-specified config location: '%s'", configPath.c_str()); + + it++; + continue; + } else { + help(); + return 0; } }