mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
fix: rename internal function asdf_tool_versions_filename
(#1544)
This commit is contained in:
parent
198ced5032
commit
b36ec73386
2
bin/asdf
2
bin/asdf
@ -69,7 +69,7 @@ asdf_cmd() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Internal Variables
|
# Internal Variables
|
||||||
ASDF_DEFAULT_TOOL_VERSIONS_FILENAME=$(asdf_default_tool_versions_filename)
|
ASDF_DEFAULT_TOOL_VERSIONS_FILENAME=$(asdf_tool_versions_filename)
|
||||||
export ASDF_DEFAULT_TOOL_VERSIONS_FILENAME
|
export ASDF_DEFAULT_TOOL_VERSIONS_FILENAME
|
||||||
|
|
||||||
ASDF_CONFIG_FILE=$(asdf_config_file)
|
ASDF_CONFIG_FILE=$(asdf_config_file)
|
||||||
|
@ -17,7 +17,7 @@ version_command() {
|
|||||||
local file_name
|
local file_name
|
||||||
local file
|
local file
|
||||||
|
|
||||||
file_name="$(asdf_default_tool_versions_filename)"
|
file_name="$(asdf_tool_versions_filename)"
|
||||||
|
|
||||||
if [ "$cmd" = "global" ]; then
|
if [ "$cmd" = "global" ]; then
|
||||||
file="$HOME/$file_name"
|
file="$HOME/$file_name"
|
||||||
|
@ -16,7 +16,7 @@ asdf_version() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
asdf_default_tool_versions_filename() {
|
asdf_tool_versions_filename() {
|
||||||
printf '%s\n' "${ASDF_DEFAULT_TOOL_VERSIONS_FILENAME:-.tool-versions}"
|
printf '%s\n' "${ASDF_DEFAULT_TOOL_VERSIONS_FILENAME:-.tool-versions}"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -163,7 +163,7 @@ get_version_in_dir() {
|
|||||||
|
|
||||||
local asdf_version
|
local asdf_version
|
||||||
|
|
||||||
file_name=$(asdf_default_tool_versions_filename)
|
file_name=$(asdf_tool_versions_filename)
|
||||||
asdf_version=$(parse_asdf_version_file "$search_path/$file_name" "$plugin_name")
|
asdf_version=$(parse_asdf_version_file "$search_path/$file_name" "$plugin_name")
|
||||||
|
|
||||||
if [ -n "$asdf_version" ]; then
|
if [ -n "$asdf_version" ]; then
|
||||||
@ -456,7 +456,7 @@ get_plugin_source_url() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
find_tool_versions() {
|
find_tool_versions() {
|
||||||
find_file_upwards "$(asdf_default_tool_versions_filename)"
|
find_file_upwards "$(asdf_tool_versions_filename)"
|
||||||
}
|
}
|
||||||
|
|
||||||
find_file_upwards() {
|
find_file_upwards() {
|
||||||
|
Loading…
Reference in New Issue
Block a user