0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/asdf/asdf.plugin.zsh

18 lines
427 B
Bash
Raw Normal View History

# Find where asdf should be installed
2016-03-30 08:05:07 +02:00
ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}"
# If not found, check for Homebrew package
if [[ ! -d $ASDF_DIR ]] && (( $+commands[brew] )); then
ASDF_DIR="$(brew --prefix asdf)"
2016-03-30 08:05:07 +02:00
fi
2018-04-22 20:27:12 +02:00
# Load command
if [[ -f "$ASDF_DIR/asdf.sh" ]]; then
. "$ASDF_DIR/asdf.sh"
# Load completions
if [[ -f "$ASDF_DIR/completions/asdf.bash" ]]; then
. "$ASDF_DIR/completions/asdf.bash"
fi
2018-04-22 20:27:12 +02:00
fi