mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-24 22:18:36 -06:00
fix: install-completion syntax
This commit is contained in:
parent
ca9a4c9a37
commit
214cffdcee
1 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ package() {
|
|||
# Manpage
|
||||
install-manual "./${name}.1"
|
||||
# Completions
|
||||
cat "./${name}.bash" | install-completion bash
|
||||
cat "./${name}.fish" | install-completion fish
|
||||
cat "./$_{name}" | install-completion zsh
|
||||
cat "./${name}.bash" | install-completion bash "${name}"
|
||||
cat "./${name}.fish" | install-completion fish "${name}"
|
||||
cat "./$_{name}" | install-completion zsh "${name}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue