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
240
Wiki
Activity
Browse Source
Add rbenv-set-local
pull/360/head^2
Sam Stephenson
15 years ago
parent
af6b06743b
commit
6ec91083d8
1 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+14
-0
bin/rbenv-set-local
+ 14
- 0
bin/rbenv-set-local
View File
@ -0,0 +1,14 @@
#!/bin/bash
set -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv set-local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-path "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version
Write
Preview
Loading…
Cancel
Save