Merge pull request #521 from wmoxam/master

Fix rbenv on OpenBSD

Fixes #519
This commit is contained in:
Mislav Marohnić 2014-01-01 15:31:08 -08:00
commit 6d0bf9b39f

View file

@ -8,7 +8,7 @@ VERSION_FILE="$1"
if [ -e "$VERSION_FILE" ]; then
# 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.
words=( $(head -c 1024 "$VERSION_FILE") )
words=( $(cut -b 1-1024 "$VERSION_FILE") )
version="${words[0]}"
if [ -n "$version" ]; then