mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-22 22:52:27 +00:00
9 lines
181 B
Bash
Executable file
9 lines
181 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
{ echo "rbenv: warning: \`set-default' has been renamed to \`global'"
|
|
echo " and will be removed in v0.3.0"
|
|
echo
|
|
} >&2
|
|
|
|
exec rbenv-global "$@"
|