ソースを参照

Quote script path and remove unnecessary semicolon

pull/360/head^2
Sam Stephenson 15年前
コミット
699cd8c203
3個のファイルの変更3行の追加3行の削除
  1. +1
    -1
      libexec/rbenv-exec
  2. +1
    -1
      libexec/rbenv-rehash
  3. +1
    -1
      libexec/rbenv-which

+ 1
- 1
libexec/rbenv-exec ファイルの表示

@ -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 ファイルの表示

@ -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 ファイルの表示

@ -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

読み込み中…
キャンセル
保存