mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
bd0b4b64c6
Fixes #10484 Closes #10481
22 lines
612 B
Bash
22 lines
612 B
Bash
# Find where asdf should be installed
|
|
ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}"
|
|
ASDF_COMPLETIONS="$ASDF_DIR/completions"
|
|
|
|
# If not found, check for Homebrew package
|
|
if [[ ! -f "$ASDF_DIR/asdf.sh" || ! -f "$ASDF_COMPLETIONS/asdf.bash" ]] && (( $+commands[brew] )); then
|
|
brew_prefix="$(brew --prefix asdf)"
|
|
ASDF_DIR="${brew_prefix}/libexec"
|
|
ASDF_COMPLETIONS="${brew_prefix}/etc/bash_completion.d"
|
|
unset brew_prefix
|
|
fi
|
|
|
|
# Load command
|
|
if [[ -f "$ASDF_DIR/asdf.sh" ]]; then
|
|
. "$ASDF_DIR/asdf.sh"
|
|
|
|
# Load completions
|
|
if [[ -f "$ASDF_COMPLETIONS/asdf.bash" ]]; then
|
|
. "$ASDF_COMPLETIONS/asdf.bash"
|
|
fi
|
|
fi
|