Use default shim for python
This commit is contained in:
parent
de03df224c
commit
e0579c9ce6
1 changed files with 0 additions and 24 deletions
24
shims/python
24
shims/python
|
@ -1,24 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
source $(dirname $(dirname $0))/lib/utils.sh
|
||||
|
||||
run_python() {
|
||||
local plugin_name="python"
|
||||
|
||||
local full_version=$(get_preset_version_for $plugin_name)
|
||||
|
||||
if [ "$full_version" == "" ]; then
|
||||
echo "No version set for ${plugin_name}"
|
||||
exit -1
|
||||
fi
|
||||
|
||||
local short_python_version=""
|
||||
if [ "$full_version" != "system" ]; then
|
||||
IFS='.' read -r -a splitted_version <<< "$full_version"
|
||||
short_python_version="${splitted_version[0]}.${splitted_version[1]}"
|
||||
fi
|
||||
|
||||
exec $(asdf_dir)/bin/private/asdf-exec python bin/python${short_python_version} "$@"
|
||||
}
|
||||
|
||||
run_python "$@"
|
Loading…
Reference in a new issue