#!/usr/bin/env bash if test $(BASH_SOURCE[0]) != "" { setglobal current_script_path = $(BASH_SOURCE[0]) } else { setglobal current_script_path = $0 } export ASDF_DIR setglobal ASDF_DIR = $[cd $[dirname $current_script_path] &> /dev/null || exit 1; pwd] export PATH="$(ASDF_DIR)/bin:$(ASDF_DIR)/shims:$PATH" if test -n $ZSH_VERSION { autoload -U bashcompinit bashcompinit }