mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
export ASDF_DIR so that plugins can use it to refer to the ASDF DIR
Also fixed `shellcheck` warnings in the file.
This commit is contained in:
parent
7b586312fc
commit
809f32bb9f
9
asdf.sh
9
asdf.sh
@ -1,13 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ "${BASH_SOURCE[0]}" != "" ]; then
|
||||
current_script_path=${BASH_SOURCE[0]}
|
||||
current_script_path="${BASH_SOURCE[0]}"
|
||||
else
|
||||
current_script_path=$0
|
||||
current_script_path="$0"
|
||||
fi
|
||||
|
||||
asdf_dir=$(cd $(dirname $current_script_path) &> /dev/null; echo $(pwd))
|
||||
export PATH="${asdf_dir}/bin:${asdf_dir}/shims:$PATH"
|
||||
# shellcheck disable=SC2155,SC2164
|
||||
export ASDF_DIR="$(cd "$(dirname "$current_script_path")" &> /dev/null; pwd)"
|
||||
export PATH="${ASDF_DIR}/bin:${ASDF_DIR}/shims:$PATH"
|
||||
|
||||
if [ -n "$ZSH_VERSION" ]; then
|
||||
autoload -U bashcompinit
|
||||
|
Loading…
Reference in New Issue
Block a user