mirror of
https://github.com/Dangoware/sqp.git
synced 2025-06-22 22:52:56 -05:00
Fixed accidentally flipped flags
This commit is contained in:
parent
0e0d643fdc
commit
dbb6990617
1 changed files with 2 additions and 2 deletions
|
@ -15,11 +15,11 @@ struct Cli {
|
||||||
command: Subcommands,
|
command: Subcommands,
|
||||||
|
|
||||||
/// Overwrite output files
|
/// Overwrite output files
|
||||||
#[arg(short = 'n', long = "overwrite", conflicts_with = "assumeno")]
|
#[arg(short = 'y', long = "overwrite", conflicts_with = "assumeno")]
|
||||||
assumeyes: bool,
|
assumeyes: bool,
|
||||||
|
|
||||||
/// Do not overwrite output files
|
/// Do not overwrite output files
|
||||||
#[arg(short = 'y', long = "preserve", conflicts_with = "assumeyes")]
|
#[arg(short = 'n', long = "preserve", conflicts_with = "assumeyes")]
|
||||||
assumeno: bool,
|
assumeno: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue