2011-08-18 19:11:40 +00:00
|
|
|
#!/usr/bin/env bash
|
2012-12-30 04:05:04 +00:00
|
|
|
# Usage: rbenv version-file-read <file>
|
2011-08-18 19:11:40 +00:00
|
|
|
set -e
|
2011-09-12 15:11:59 +00:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-18 19:11:40 +00:00
|
|
|
|
|
|
|
VERSION_FILE="$1"
|
|
|
|
|
2022-03-08 18:56:22 +00:00
|
|
|
if [ -s "$VERSION_FILE" ]; then
|
2018-06-05 14:43:31 +00:00
|
|
|
# Read the first word from the specified version file. Avoid reading it whole.
|
2014-03-21 00:36:39 +00:00
|
|
|
IFS="${IFS}"$'\r'
|
2013-12-31 06:44:36 +00:00
|
|
|
words=( $(cut -b 1-1024 "$VERSION_FILE") )
|
2014-03-21 00:36:39 +00:00
|
|
|
version="${words[0]}"
|
2011-09-28 17:06:53 +00:00
|
|
|
|
2019-04-03 10:58:25 +00:00
|
|
|
if [ "$version" = ".." ] || [[ $version == */* ]]; then
|
|
|
|
echo "rbenv: invalid version in \`$VERSION_FILE'" >&2
|
|
|
|
elif [ -n "$version" ]; then
|
2011-09-28 17:06:53 +00:00
|
|
|
echo "$version"
|
|
|
|
exit
|
|
|
|
fi
|
2011-08-18 19:11:40 +00:00
|
|
|
fi
|
2011-09-09 20:52:31 +00:00
|
|
|
|
|
|
|
exit 1
|