Fixed accidentally flipped flags

This commit is contained in:
G2-Games 2025-05-29 14:57:05 -05:00
parent 0e0d643fdc
commit dbb6990617

View file

@ -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,
}