Skip to content

Commit

Permalink
fix: Remove invalid clap conflicts_with config
Browse files Browse the repository at this point in the history
This seems like a copy-paste error, since they can be used together jsut
fine, and indeed are so in the tests.
  • Loading branch information
theduke committed May 11, 2023
1 parent c06f481 commit b1d86f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/cli-compiler/src/commands/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub struct Config {
prefix: bool,

/// Directory containing Wasmer executables.
#[clap(long, conflicts_with = "pkg-config")]
#[clap(long)]
bindir: bool,

/// Directory containing Wasmer headers.
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/commands/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub struct Flags {
prefix: bool,

/// Directory containing Wasmer executables.
#[clap(long, conflicts_with = "pkg-config")]
#[clap(long)]
bindir: bool,

/// Directory containing Wasmer headers.
Expand Down

0 comments on commit b1d86f6

Please sign in to comment.