mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-07 12:40:04 +00:00
Use PathBuf
for field Options::install_path
Since it does not require a utf-8 string. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
a52ac3fc7a
commit
f72eafb049
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ struct Options {
|
|||
/// switches over to a "local" install, where binaries are installed at the path given, and the
|
||||
/// global metadata files are not updated.
|
||||
#[clap(help_heading = "Options", long)]
|
||||
install_path: Option<String>,
|
||||
install_path: Option<PathBuf>,
|
||||
|
||||
/// Enforce downloads over secure transports only.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue