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 224439f04a
commit ae4ff20534
No known key found for this signature in database
GPG key ID: C1F2658DC370C8FC

View file

@ -18,7 +18,7 @@ struct Args {
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)
#[clap(short, long)]
#[clap(long)]
single_directory: bool
}