Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ functionality, under the "Removed" section.

### Fixed

- Nushell completions now properly complete and expand the `installable` argument by treating it
like a path instead of a string.

### Removed

## 4.3.0
Expand Down
1 change: 1 addition & 0 deletions crates/nh-core/src/installable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ impl Args for Installable {
Arg::new("installable")
.action(ArgAction::Set)
.value_name("INSTALLABLE")
.value_parser(clap::builder::PathBufValueParser::new())
.help("Which installable to use")
.long_help(format!(
r"Which installable to use.
Expand Down
Loading