mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Remove unnecessary file
This commit is contained in:
parent
21e4c156d3
commit
886daefb26
27
lib/asdf.sh
27
lib/asdf.sh
@ -1,27 +0,0 @@
|
||||
reshim_command() {
|
||||
local package=$1
|
||||
local version=$2
|
||||
|
||||
local source_path=$(get_source_path $package)
|
||||
check_if_source_exists $source_path
|
||||
|
||||
|
||||
if [ ! -d $(asdf_dir)/shims ]
|
||||
then
|
||||
mkdir $(asdf_dir)/shims
|
||||
fi
|
||||
|
||||
|
||||
local package_installs_path=$(asdf_dir)/installs/${package}
|
||||
|
||||
if [ $version = "" ]
|
||||
then
|
||||
#TODO add support to parse "tag-$version" dir names to what we want
|
||||
for install in ${package_installs_path}/*/; do
|
||||
echo "TODO"
|
||||
echo "$(basename $install)"
|
||||
done
|
||||
else
|
||||
generate_shims_for_version $package $version "${@:3}"
|
||||
fi
|
||||
}
|
Loading…
Reference in New Issue
Block a user