2012-08-31 02:23:41 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
[ -n "$PYENV_DEBUG" ] && set -x
|
|
|
|
|
|
|
|
VERSION_FILE="$1"
|
|
|
|
|
|
|
|
if [ -e "$VERSION_FILE" ]; then
|
|
|
|
# Read and print the first non-whitespace word from the specified
|
|
|
|
# version file.
|
2012-08-31 03:09:46 -04:00
|
|
|
versions=()
|
2012-08-31 02:23:41 -04:00
|
|
|
while read -a words; do
|
|
|
|
word="${words[0]}"
|
2012-08-31 03:09:46 -04:00
|
|
|
if [ -n "$word" ]; then
|
|
|
|
length="${#versions[@]}"
|
|
|
|
versions=("${versions[@]}" "$word")
|
2012-08-31 02:23:41 -04:00
|
|
|
fi
|
|
|
|
done < <( cat "$VERSION_FILE" && echo )
|
|
|
|
|
2012-08-31 03:09:46 -04:00
|
|
|
if [ -n "$versions" ]; then
|
|
|
|
{
|
|
|
|
IFS=:
|
|
|
|
echo "${versions[*]}"
|
|
|
|
}
|
2012-08-31 02:23:41 -04:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 1
|