asdf-python/bin/get-version-from-legacy-file
2016-04-24 18:32:50 +09:00

13 lines
315 B
Bash
Executable file

#!/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