We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 336f56a commit 8507e0cCopy full SHA for 8507e0c
1 file changed
src/main.rs
@@ -101,7 +101,7 @@ struct FlistInspectionOptions {
101
#[derive(Args, Debug)]
102
struct SyncOptions {
103
/// Hash of the file or block to sync
104
- #[clap(short, long)]
+ #[clap(short = 'H', long)]
105
hash: Option<String>,
106
107
/// Source server URL (e.g., http://localhost:8080)
@@ -479,7 +479,7 @@ struct TrackBlocksOptions {
479
token: String,
480
481
/// specific block hash to track
482
- #[clap(short, long, conflicts_with = "all")]
+ #[clap(short = 'H', long, conflicts_with = "all")]
483
484
485
/// track all blocks (default if no hash is provided)
0 commit comments