diff --git a/libexec/rbenv-version-file-read b/libexec/rbenv-version-file-read index 9a3cd05b..d6027c4c 100755 --- a/libexec/rbenv-version-file-read +++ b/libexec/rbenv-version-file-read @@ -5,8 +5,8 @@ set -e VERSION_FILE="$1" if [ -e "$VERSION_FILE" ]; then - # Read and print the first non-whitespace word from the specified - # version file. + # 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. version="" while read -a words; do word="${words[0]}"