Skip to content

Commit

Permalink
Update projects option to be singular, update comment to let them kno…
Browse files Browse the repository at this point in the history
…w they can pass it multiple times
  • Loading branch information
tbezman committed Apr 15, 2022
1 parent e5aa63f commit 11e05cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compiler/crates/relay-bin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ struct CompileCommand {
#[clap(long, short)]
watch: bool,

/// A list of projects to compile.
/// If excluded, all projects will be compiled
#[clap(long)]
/// Compile only this project. You can pass this argument multiple times.
/// to compile multiple projects. If excluded, all projects will be compiled.
#[clap(name = "project", long, short)]
projects: Vec<String>,

/// Compile using this config file. If not provided, searches for a config in
Expand Down

0 comments on commit 11e05cf

Please sign in to comment.