From ca08dadff6b53be0db99d7745f419debd20c01e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 29 Jun 2022 10:31:18 +0300 Subject: [PATCH] feat: bash complete `install --path` with dirs --- src/etc/cargo.bashcomp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/cargo.bashcomp.sh b/src/etc/cargo.bashcomp.sh index c6f6dffce76..3b305e24681 100644 --- a/src/etc/cargo.bashcomp.sh +++ b/src/etc/cargo.bashcomp.sh @@ -138,7 +138,7 @@ _cargo() --target) COMPREPLY=( $( compgen -W "$(_get_targets)" -- "$cur" ) ) ;; - --target-dir) + --target-dir|--path) _filedir -d ;; help)