Skip to content

Commit

Permalink
Auto merge of #10798 - scop:patch-1, r=ehuss
Browse files Browse the repository at this point in the history
fix: bash complete `install --path` with dirs

`--path` takes a mandatory dir argument.
  • Loading branch information
bors committed Jun 29, 2022
2 parents dbff32b + ca08dad commit a3ae668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/cargo.bashcomp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ _cargo()
--target)
COMPREPLY=( $( compgen -W "$(_get_targets)" -- "$cur" ) )
;;
--target-dir)
--target-dir|--path)
_filedir -d
;;
help)
Expand Down

0 comments on commit a3ae668

Please sign in to comment.