mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Properly quote arguments with spaces
This commit is contained in:
parent
0c66f62c17
commit
4acefd6ef9
2 changed files with 2 additions and 2 deletions
|
@ -11,4 +11,4 @@ fi
|
||||||
RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
|
RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
|
||||||
|
|
||||||
shift 1
|
shift 1
|
||||||
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" $*
|
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" "$@"
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
exec rbenv-exec "${0##*/}" $*
|
exec rbenv-exec "${0##*/}" "$@"
|
||||||
|
|
Loading…
Reference in a new issue