This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
pyenv
mirror of
https://github.com/pyenv/pyenv.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
241
Wiki
Activity
Browse Source
Exit with 0 status when a version file is read successfully
pull/360/head^2
Sam Stephenson
15 years ago
parent
96679b7715
commit
e5c0fd22e1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libexec/rbenv-version-file-read
+ 1
- 1
libexec/rbenv-version-file-read
View File
@ -10,7 +10,7 @@ if [ -e "$VERSION_FILE" ]; then
version="${words[0]}"
if [ -n "$version" ]; then
echo "$version"
break
exit
fi
done < <( cat "$VERSION_FILE" && echo )
fi
Write
Preview
Loading…
Cancel
Save