2019-04-23 10:23:33 -04:00
|
|
|
#!/usr/bin/env bash
|
2013-01-18 03:41:41 -05:00
|
|
|
# Usage: pyenv version-file-read <file>
|
2012-08-31 02:23:41 -04:00
|
|
|
set -e
|
|
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
|
|
|
|
VERSION_FILE="$1"
|
|
|
|
|
2022-05-06 12:51:51 -04:00
|
|
|
if [ -s "$VERSION_FILE" ]; then
|
2013-01-18 04:57:08 -05:00
|
|
|
# Read the first non-whitespace word from the specified version file.
|
|
|
|
# Be careful not to load it whole in case there's something crazy in it.
|
2014-03-24 05:15:40 -04:00
|
|
|
IFS="${IFS}"$'\r'
|
2022-05-06 12:51:51 -04:00
|
|
|
sep=
|
|
|
|
while read -n 1024 -r version _ || [[ $version ]]; do
|
|
|
|
[[ -z $version || $version == \#* ]] && continue
|
|
|
|
printf "%s%s" "$sep" "$version"
|
|
|
|
sep=:
|
|
|
|
done <"$VERSION_FILE"
|
|
|
|
[[ $sep ]] && { echo; exit; }
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 1
|