Browse Source

Quote script path and remove unnecessary semicolon

pull/360/head^2
Sam Stephenson 15 years ago
parent
commit
699cd8c203
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libexec/rbenv-exec
  2. +1
    -1
      libexec/rbenv-rehash
  3. +1
    -1
      libexec/rbenv-which

+ 1
- 1
libexec/rbenv-exec View File

@ -17,7 +17,7 @@ RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
RBENV_BIN_PATH="${RBENV_COMMAND_PATH%/*}"
for script in $(rbenv-plugin-scripts exec); do
source $script;
source "$script";
done
shift 1

+ 1
- 1
libexec/rbenv-rehash View File

@ -71,5 +71,5 @@ make_shims ../versions/*/bin/*
cd "$CUR_PATH"
for script in $(rbenv-plugin-scripts rehash); do
source $script;
source "$script";
done

+ 1
- 1
libexec/rbenv-which View File

@ -53,7 +53,7 @@ else
fi
for script in $(rbenv-plugin-scripts which); do
source $script;
source "$script";
done
if [ -x "$RBENV_COMMAND_PATH" ]; then

Loading…
Cancel
Save