mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Move subcommands into libexec/
This commit is contained in:
parent
8f9a34d9b1
commit
43624943ee
11 changed files with 35 additions and 16 deletions
16
bin/rbenv
16
bin/rbenv
|
@ -1,16 +0,0 @@
|
||||||
#!/bin/bash -e
|
|
||||||
|
|
||||||
command="$1"
|
|
||||||
if [ -z "$command" ]; then
|
|
||||||
echo "rbenv 0.1.0" >&2
|
|
||||||
|
|
||||||
else
|
|
||||||
command_path="$(command -v "rbenv-$command" || true)"
|
|
||||||
if [ -z "$command_path" ]; then
|
|
||||||
echo "rbenv: no such command \`$command'" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
shift 1
|
|
||||||
exec "$command_path" "$@"
|
|
||||||
fi
|
|
1
bin/rbenv
Symbolic link
1
bin/rbenv
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../libexec/rbenv
|
34
libexec/rbenv
Executable file
34
libexec/rbenv
Executable file
|
@ -0,0 +1,34 @@
|
||||||
|
#!/bin/bash -e
|
||||||
|
|
||||||
|
abs_dirname() {
|
||||||
|
orig_dir=`pwd`
|
||||||
|
path="$1"
|
||||||
|
while [ -n "$path" ]; do
|
||||||
|
cd `dirname "$path"`
|
||||||
|
name=`basename "$path"`
|
||||||
|
path=`readlink "$name" || true`
|
||||||
|
done
|
||||||
|
unset name path
|
||||||
|
|
||||||
|
pwd
|
||||||
|
cd "$orig_dir"
|
||||||
|
unset orig_dir
|
||||||
|
}
|
||||||
|
|
||||||
|
bindir=`abs_dirname $0`
|
||||||
|
export PATH="$bindir:$PATH"
|
||||||
|
|
||||||
|
command="$1"
|
||||||
|
if [ -z "$command" ]; then
|
||||||
|
echo "rbenv 0.1.0" >&2
|
||||||
|
|
||||||
|
else
|
||||||
|
command_path="$(command -v "rbenv-$command" || true)"
|
||||||
|
if [ -z "$command_path" ]; then
|
||||||
|
echo "rbenv: no such command \`$command'" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
shift 1
|
||||||
|
exec "$command_path" "$@"
|
||||||
|
fi
|
Loading…
Reference in a new issue