diff --git a/lib/asdf.sh b/lib/asdf.sh deleted file mode 100755 index 2c690f12..00000000 --- a/lib/asdf.sh +++ /dev/null @@ -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 -}