1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 14:53:53 -05:00

Move subcommands into libexec/

This commit is contained in:
Joshua Peek
2011-08-02 18:01:46 -05:00
parent 8f9a34d9b1
commit 43624943ee
11 changed files with 35 additions and 16 deletions

15
libexec/rbenv-path Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash -e
if [ -n "$1" ]; then
RBENV_VERSION="$1"
elif [ -z "$RBENV_VERSION" ]; then
RBENV_VERSION="$(rbenv-version)"
fi
RBENV_VERSION_PATH="${HOME}/.rbenv/versions/${RBENV_VERSION}"
if [ ! -d "$RBENV_VERSION_PATH" ]; then
echo "rbenv: version \`${RBENV_VERSION}' not installed" >&2
exit 1
fi
echo "$RBENV_VERSION_PATH"