Author:ptrace Comitter:ptrace Date:2025-11-30 06:06:24 UTC

The current arg parser does not indicate, if the user supplied help, HELP, or ?. Which is not possible to determine if we exit with an error or not. Removed at least the [ERROR] prefix, to disarm the wording

diff --git a/src/main.jai b/src/main.jai index 0294baa..f6ebe34 100644 --- a/src/main.jai +++ b/src/main.jai @@ -24,7 +24,7 @@  */ /*     +Version: 2.0.0     +Version: 2.0.1 */ #import "Basic"; @@ -253,7 +253,7 @@ main :: () {     success, args, is_set := Cli.parse_arguments(Arguments);     if !success {         log("[Error]: Cannot parse arguments");         log("Unknown arguments.");         exit(1);     }