We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d66379 commit 292bde4Copy full SHA for 292bde4
1 file changed
src/cli/cmd/dataset.rs
@@ -36,11 +36,15 @@ pub enum DatasetCommand {
36
37
#[derive(Parser, Debug)]
38
pub enum DepositCommand {
39
- #[command(name = "cp")]
+ #[command(
40
+ name = "copy",
41
+ alias = "cp",
42
+ about = "Copy and upload local files into the deposit"
43
+ )]
44
CopyFiles(deposit::CopyInput),
- #[command(name = "ls")]
45
+ #[command(name = "list", about = "List all deposits")]
46
ListDeposits(deposit::ListInput),
- #[command(name = "lsf")]
47
+ #[command(name = "lsf", about = "List all files in a specific deposit")]
48
ListFiles(deposit::ListFiles),
49
}
50
0 commit comments