2015-05-18 22:14:08 -07:00
|
|
|
#!/usr/bin/env bash
|
2015-05-13 23:51:01 -07:00
|
|
|
|
2015-06-16 17:44:27 -07:00
|
|
|
if [ "${BASH_SOURCE[0]}" != "" ]; then
|
2017-02-12 12:21:24 -07:00
|
|
|
current_script_path="${BASH_SOURCE[0]}"
|
2015-06-16 17:44:27 -07:00
|
|
|
else
|
2017-02-12 12:21:24 -07:00
|
|
|
current_script_path="$0"
|
2015-06-16 17:44:27 -07:00
|
|
|
fi
|
|
|
|
|
2017-03-07 08:20:04 -07:00
|
|
|
export ASDF_DIR
|
|
|
|
ASDF_DIR="$(cd "$(dirname "$current_script_path")" &> /dev/null || exit 1; pwd)"
|
2017-02-12 12:21:24 -07:00
|
|
|
export PATH="${ASDF_DIR}/bin:${ASDF_DIR}/shims:$PATH"
|
2015-12-05 03:14:37 -07:00
|
|
|
|
|
|
|
if [ -n "$ZSH_VERSION" ]; then
|
2016-06-26 21:14:12 -07:00
|
|
|
autoload -U bashcompinit
|
|
|
|
bashcompinit
|
2015-12-05 03:14:37 -07:00
|
|
|
fi
|