Skip to content

Commit

Permalink
fix: added back short args
Browse files Browse the repository at this point in the history
  • Loading branch information
Velka-DEV committed Apr 20, 2024
1 parent 203f080 commit 66f58e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ use clap::Parser;
#[command(version, about, long_about = None)]
struct Args {
/// File extensions to include (comma-separated)
#[arg(long, value_delimiter = ',')]
#[arg(long, value_delimiter = ',', short = 'e')]
extensions: Vec<String>,

/// Exclude files/folders matching the pattern (comma-separated)
#[arg(long, value_delimiter = ',')]
#[arg(long, value_delimiter = ',', short = 'x')]
exclude: Vec<String>,
}

Expand Down

0 comments on commit 66f58e5

Please sign in to comment.