Skip to content

Commit

Permalink
fix: fix short argument collision in daemon
Browse files Browse the repository at this point in the history
Signed-off-by: innocentzero <[email protected]>
  • Loading branch information
InnocentZero committed Mar 19, 2024
1 parent 75d5004 commit 0756702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swhkd/src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ struct Args {
debug: bool,

/// Take a list of devices from the user
#[arg(short, long, num_args = 0.., value_delimiter = ' ')]
#[arg(long, num_args = 0.., value_delimiter = ' ')]
device: Vec<String>,
}

Expand Down

0 comments on commit 0756702

Please sign in to comment.