Remove unnecessary file

This commit is contained in:
Akash Manohar J 2015-05-10 22:59:32 +05:30
parent 21e4c156d3
commit 886daefb26

View File

@ -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
}