Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Dec 4, 2021
1 parent 6cdecf2 commit 18df4c6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions cli/src/forge_opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ pub enum Subcommands {
about = "prints the automatically inferred remappings for this repository"
)]
Remappings {
#[structopt(help = "the project's root path, default being the current working directory", long)]
#[structopt(
help = "the project's root path, default being the current working directory",
long
)]
root: Option<PathBuf>,
#[structopt(help = "the paths where your libraries are installed", long)]
lib_paths: Vec<PathBuf>,
Expand Down Expand Up @@ -154,7 +157,10 @@ pub enum Subcommands {

#[structopt(about = "removes the build artifacts and cache directories")]
Clean {
#[structopt(help = "the project's root path, default being the current working directory", long)]
#[structopt(
help = "the project's root path, default being the current working directory",
long
)]
root: Option<PathBuf>,
},
}
Expand Down Expand Up @@ -289,7 +295,10 @@ impl std::convert::TryFrom<&BuildOpts> for Project {

#[derive(Debug, StructOpt)]
pub struct BuildOpts {
#[structopt(help = "the project's root path, default being the current working directory", long)]
#[structopt(
help = "the project's root path, default being the current working directory",
long
)]
pub root: Option<PathBuf>,

#[structopt(
Expand Down

0 comments on commit 18df4c6

Please sign in to comment.