From da2433d9d98ff21603c88ac58bf00247744d1387 Mon Sep 17 00:00:00 2001 From: Liam <33645555+lj3954@users.noreply.github.com> Date: Sat, 10 Aug 2024 19:58:59 -0700 Subject: [PATCH] feat: Add option to override compatibility checks --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 7502b61b..195f46ee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,6 +33,9 @@ struct Args { /// Enable compatibility mode (disable icons and RGB colors) #[arg(short, long, default_value_t = false)] compat: bool, + #[arg(long, default_value_t = false)] + #[clap(help = "Show all available options, disregarding compatibility checks (UNSAFE)")] + override_validation: bool, } fn main() -> std::io::Result<()> {