We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dceef7 commit 5bb4384Copy full SHA for 5bb4384
src/main.rs
@@ -29,11 +29,11 @@ struct Args {
29
ignore_file: PathBuf,
30
31
/// Download and process only a specific folder within the repository
32
- #[clap(short, long, value_name = "FOLDER PATH")]
+ #[clap(short, long, value_name = "FOLDER PATH", conflicts_with = "pr")]
33
folder: Option<String>,
34
35
/// Process only the files changed in a specific pull request
36
- #[clap(long, value_name = "PULL REQUEST NUMBER")]
+ #[clap(long, value_name = "PULL REQUEST NUMBER", conflicts_with = "folder")]
37
pr: Option<u32>,
38
}
39
0 commit comments