You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
243 B
Cheetah
9 lines
243 B
Cheetah
2 years ago
|
{{ if lookPath "brew" -}}
|
||
4 years ago
|
# vi: ft=bash
|
||
3 years ago
|
if command -v brew &> /dev/null; then
|
||
|
if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
|
||
|
. "$(brew --prefix)/share/bash-completion/bash_completion"
|
||
|
fi
|
||
4 years ago
|
fi
|
||
2 years ago
|
{{- end }}
|