Main: Remove short argument version for single_directory

The -s specifying is too ambigous for a debug flag and can easily clash
with other flags.
This commit is contained in:
networkException 2022-04-22 02:32:09 +02:00
parent fe10bdde7d
commit 279dc41175
Signed by: networkException
GPG key ID: E3877443AE684391

View file

@ -18,7 +18,7 @@ struct Args {
jobs: u8, jobs: u8,
/// If the path argument should be used to check all files in a directory it points to instead of a restic repository (use for testing) /// If the path argument should be used to check all files in a directory it points to instead of a restic repository (use for testing)
#[clap(short, long)] #[clap(long)]
single_directory: bool single_directory: bool
} }