diff --git a/sqp_tools/src/main.rs b/sqp_tools/src/main.rs index 6112469..c9df3fe 100644 --- a/sqp_tools/src/main.rs +++ b/sqp_tools/src/main.rs @@ -15,11 +15,11 @@ struct Cli { command: Subcommands, /// Overwrite output files - #[arg(short = 'n', long = "overwrite", conflicts_with = "assumeno")] + #[arg(short = 'y', long = "overwrite", conflicts_with = "assumeno")] assumeyes: bool, /// Do not overwrite output files - #[arg(short = 'y', long = "preserve", conflicts_with = "assumeyes")] + #[arg(short = 'n', long = "preserve", conflicts_with = "assumeyes")] assumeno: bool, }