12 lines
237 B
Bash
12 lines
237 B
Bash
if [ -d "$HOME/.asdf" ] ; then
|
|
ASDF_DATA_DIR=$HOME/.asdf
|
|
|
|
# Pre-0.16.0
|
|
# if [ -f "$ASDF_DATA_DIR/asdf.sh" ] ; then
|
|
# . "$HOME/.asdf/asdf.sh"
|
|
# . "$HOME/.asdf/completions/asdf.bash"
|
|
# fi
|
|
|
|
addpath $ASDF_DATA_DIR/shims
|
|
fi
|