Fix short arg conflict

feature/yaml-config
Edward Shen 2021-07-09 19:17:56 -04:00
parent ce03ce0baf
commit 88561f7c2c
Signed by: edward
GPG Key ID: 19182661E818369F
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ struct CliArgs {
pub ephemeral_disk_encryption: Option<bool>,
#[clap(short, long)]
pub config_path: Option<PathBuf>,
#[clap(short, long)]
#[clap(short = 't', long)]
pub cache_type: Option<CacheType>,
}