Skip to content

Commit

Permalink
made cli help more understandable
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek committed Nov 20, 2024
1 parent 8647261 commit e311de9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli_args/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ pub struct Cli {
#[arg(
short,
long,
help = "url for download mirror to use instead of github.com"
help = "URL for tools download mirror to be used instead of github.com"
)]
pub mirror: Option<String>,

#[arg(
long,
help = "url for download mirror to use instead of github.com for downloading esp-idf"
help = "URL for ESP-IDF download mirror to be used instead of github.com"
)]
pub idf_mirror: Option<String>,

Expand Down Expand Up @@ -125,7 +125,7 @@ pub struct Cli {

#[arg(
long,
help = "if set, the installer will as it's very last move save the configuration to the specified file path. This file can than be used to repeat the instalation with the same settings."
help = "if set, the installer will as it's very last move save the configuration to the specified file path. This file can than be used to repeat the installation with the same settings."
)]
pub config_file_save_path: Option<String>,
}
Expand Down

0 comments on commit e311de9

Please sign in to comment.