asdf-python/bin/get-version-from-legacy-file

14 lines
315 B
Text
Raw Normal View History

2016-04-24 10:28:48 +01:00
#!/usr/bin/env bash
get_legacy_version() {
current_directory=$1
python_version_file="$current_directory/.python-version"
# Get version from .python-version file. .python-version is used by pyenv
if [ -f $python_version_file ]; then
cat $python_version_file
fi
}
get_legacy_version $1