add: long argument option to cmd_status

This commit is contained in:
qwjyh 2024-12-02 03:07:25 +09:00
parent 3d8aa7bca0
commit 07ef49ca7b

View file

@ -49,10 +49,10 @@ pub(crate) enum Commands {
/// Target path. Default is the current directory.
path: Option<PathBuf>,
/// Show storage which the path belongs to.
#[arg(short)]
#[arg(short, long)]
storage: bool,
/// Show backup config covering the path.
#[arg(short)]
#[arg(short, long)]
backup: bool,
},