diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-02 10:25:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 10:25:03 +0200 |
commit | ec1348a72a510f68dfd2698bc368b29e2c72cbae (patch) | |
tree | 268019c51b5832ff48d135e761fc6af10f027bc7 /main | |
parent | 04bdd7eb9354c10abaa47e095dd45e89dc02cd0e (diff) | |
parent | d38d76d039a20bfcbc0a8612fee1c9a37cc21c78 (diff) |
Merge pull request #62618 from Bromeon/bugfix/exit-code
Fix exit code of --help and --version, and test them in CI
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/main.cpp b/main/main.cpp index 00b7483406..0205b9c157 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -691,12 +691,12 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph if (I->get() == "-h" || I->get() == "--help" || I->get() == "/?") { // display help show_help = true; - exit_code = OK; + exit_code = ERR_HELP; // Hack to force an early exit in `main()` with a success code. goto error; } else if (I->get() == "--version") { print_line(get_full_version_string()); - exit_code = OK; + exit_code = ERR_HELP; // Hack to force an early exit in `main()` with a success code. goto error; } else if (I->get() == "-v" || I->get() == "--verbose") { // verbose output |