asdf/asdf.sh
James Hegedus d3895f593c match against whole PATH segments
string replacement still doesn't match against asdf segments when last in PATH
2018-03-09 01:01:09 +11:00

28 lines
751 B
Bash

#!/usr/bin/env bash
if [ "${BASH_SOURCE[0]}" != "" ]; then
current_script_path="${BASH_SOURCE[0]}"
else
current_script_path="$0"
fi
export ASDF_DIR
ASDF_DIR="$(cd "$(dirname "$current_script_path")" &> /dev/null || exit 1; pwd)"
# Add asdf to PATH
#
# if in $PATH, remove, regardless of if it is in the right place (at the front) or not.
# replace all occurrences - ${parameter//pattern/string}
ASDF_BIN="${ASDF_DIR}/bin"
ASDF_SHIMS="${ASDF_DIR}/shims"
[[ ":$PATH:" == *":${ASDF_BIN}:"* ]] && PATH="${PATH//$ASDF_BIN:/}"
[[ ":$PATH:" == *":${ASDF_SHIMS}:"* ]] && PATH="${PATH//$ASDF_SHIMS:/}"
# add to front of $PATH
PATH="${ASDF_BIN}$PATH"
PATH="${ASDF_SHIMS}$PATH"
if [ -n "$ZSH_VERSION" ]; then
autoload -U bashcompinit
bashcompinit
fi