Skip to content

Commit 8507e0c

Browse files
committed
fix: changing the short flag for hash from to -H
1 parent 336f56a commit 8507e0c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ struct FlistInspectionOptions {
101101
#[derive(Args, Debug)]
102102
struct SyncOptions {
103103
/// Hash of the file or block to sync
104-
#[clap(short, long)]
104+
#[clap(short = 'H', long)]
105105
hash: Option<String>,
106106

107107
/// Source server URL (e.g., http://localhost:8080)
@@ -479,7 +479,7 @@ struct TrackBlocksOptions {
479479
token: String,
480480

481481
/// specific block hash to track
482-
#[clap(short, long, conflicts_with = "all")]
482+
#[clap(short = 'H', long, conflicts_with = "all")]
483483
hash: Option<String>,
484484

485485
/// track all blocks (default if no hash is provided)

0 commit comments

Comments
 (0)