瀏覽代碼

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

Loading…
取消
儲存