asdf/lib/commands/command-where

48 lines
1.0 KiB
Plaintext
Raw Normal View History

# -*- sh -*-
2015-05-28 11:38:13 -07:00
where_command() {
local plugin_name=$1
local full_version=$2
2017-09-04 10:04:56 -07:00
check_if_plugin_exists "$plugin_name"
2015-05-28 11:38:13 -07:00
local version
local install_type="version"
if [[ -z ${full_version} ]]; then
local version_and_path
version_and_path=$(find_versions "$plugin_name" "$PWD")
version=$(cut -d '|' -f 1 <<< "$version_and_path");
2015-05-28 11:38:13 -07:00
else
local -a version_info
IFS=':' read -r -a version_info <<< "$full_version"
if [ "${version_info[0]}" = "ref" ]; then
install_type="${version_info[0]}"
version="${version_info[1]}"
else
version="${version_info[0]}"
fi
fi
if [ -z "$version" ]; then
display_no_version_set "$plugin_name"
exit 1
2015-05-28 11:38:13 -07:00
fi
2017-09-04 10:04:56 -07:00
local install_path
install_path=$(get_install_path "$plugin_name" "$install_type" "$version")
2015-05-28 11:38:13 -07:00
2017-09-04 10:04:56 -07:00
if [ -d "$install_path" ]; then
echo "$install_path"
2015-05-28 11:38:13 -07:00
exit 0
else
if [ "$version" = "system" ]; then
echo "System version is selected"
exit 1
else
echo "Version not installed"
exit 1
fi
2015-05-28 11:38:13 -07:00
fi
}
where_command "$@"