mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Merge pull request #521 from wmoxam/master
Fix rbenv on OpenBSD Fixes #519
This commit is contained in:
commit
6d0bf9b39f
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ VERSION_FILE="$1"
|
||||||
if [ -e "$VERSION_FILE" ]; then
|
if [ -e "$VERSION_FILE" ]; then
|
||||||
# Read 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.
|
# 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]}"
|
version="${words[0]}"
|
||||||
|
|
||||||
if [ -n "$version" ]; then
|
if [ -n "$version" ]; then
|
||||||
|
|
Loading…
Reference in a new issue