From e860230d6d6294acd5a65964533dce909b532a0b Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Fri, 9 Feb 2024 18:02:46 -0600 Subject: [PATCH] fix: Autocomplete for croc --- croc/lure.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/croc/lure.sh b/croc/lure.sh index 87aebf1..90fd782 100644 --- a/croc/lure.sh +++ b/croc/lure.sh @@ -27,6 +27,8 @@ package() { # Binary install-binary "./${name}" # Autocomplete + curl -L "https://raw.githubusercontent.com/$git_repo/main/src/install/bash_autocomplete" -o "bash_autocomplete" + curl -L "https://raw.githubusercontent.com/$git_repo/main/src/install/zsh_autocomplete" -o "zsh_autocomplete" install-completion zsh "${name}" <"./zsh_autocomplete" install-completion bash "${name}" <"./bash_autocomplete" }