asdf/lib/commands/version_commands.sh
2019-11-27 12:17:17 -06:00

48 lines
1010 B
Bash

# -*- sh -*-
version_command() {
local cmd=$1
local plugin=$2
if [ "$#" -lt "3" ]; then
if [ "$cmd" = "global" ]; then
echo "Usage: asdf global <name> <version>"
else
echo "Usage: asdf local <name> <version>"
fi
exit 1
fi
shift 2
local versions=("$@")
local file
if [ "$cmd" = "global" ]; then
file=${ASDF_DEFAULT_TOOL_VERSIONS_FILENAME:-$HOME/.tool-versions}
elif [ "$cmd" = "local-tree" ]; then
file=$(find_tool_versions)
else # cmd = local
file="$(pwd)/.tool-versions"
fi
if [ -L "$file" ]; then
# Resolve file path if symlink
file="$(resolve_symlink "$file")"
fi
check_if_plugin_exists "$plugin"
local version
for version in "${versions[@]}"; do
check_if_version_exists "$plugin" "$version"
done
if [ -f "$file" ] && grep "^$plugin " "$file" > /dev/null; then
sed -i.bak -e "s|^$plugin .*$|$plugin ${versions[*]}|" "$file"
rm "$file".bak
else
echo "$plugin ${versions[*]}" >> "$file"
fi
}