We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
revisions
1 parent cf6ab8a commit 3f8371bCopy full SHA for 3f8371b
1 file changed
src/main.rs
@@ -134,11 +134,19 @@ struct Job {
134
platform_option: String,
135
}
136
137
+/// Downloads artifacts from a TreeHerder instance\[1\] and places them in a directory with
138
+/// directory structures for ease of navigation.
139
+///
140
+/// By default, Mozilla's corporate instance is the host.
141
142
+/// [1]: https://github.com/mozilla/treeherder
143
#[derive(Debug, Parser)]
144
#[clap(about, version)]
145
struct Cli {
146
#[clap(flatten)]
147
options: Options,
148
+ /// Refs. to the revision at the tip of TreeHerder push(es), of the form
149
+ /// `<project>:<hash>`.
150
#[clap(value_parser = RevisionRef::from_str)]
151
revisions: Vec<RevisionRef>,
152
0 commit comments