docs: 📝 Update export_file documentation

This commit is contained in:
Sergio Gasquez 2022-12-30 10:38:47 +01:00
parent 1a21ef9593
commit 4fd66bdc3c
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ Options:
When using this option, `ldproxy` crate will also be installed.
-f, --export-file <EXPORT_FILE>
Relative or full path of the generated export file. If no path is provided, the file will be generated under home directory (https://docs.rs/dirs/latest/dirs/fn.home_dir.html)
Relative or full path for the export file that will be generated. If no path is provided, the file will be generated under home directory (https://docs.rs/dirs/latest/dirs/fn.home_dir.html)
-c, --extra-crates <EXTRA_CRATES>
Comma or space list of extra crates to install

View File

@ -77,7 +77,7 @@ pub struct InstallOpts {
/// When using this option, `ldproxy` crate will also be installed.
#[arg(short = 'e', long, required = false)]
pub esp_idf_version: Option<String>,
/// Relative or full path of the generated export file. If no path is provided, the file will be generated under home directory (https://docs.rs/dirs/latest/dirs/fn.home_dir.html).
/// Relative or full path for the export file that will be generated. If no path is provided, the file will be generated under home directory (https://docs.rs/dirs/latest/dirs/fn.home_dir.html).
#[arg(short = 'f', long)]
pub export_file: Option<PathBuf>,
/// Comma or space list of extra crates to install.