This website works better with JavaScript.
首頁
探索
說明
登入
isprogram
/
pyenv
镜像来自
https://github.com/pyenv/pyenv.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
Projects
0
版本發佈
241
Wiki
Activity
瀏覽代碼
Quote script path and remove unnecessary semicolon
pull/360/head^2
Sam Stephenson
15 年之前
父節點
096743acde
當前提交
699cd8c203
共有
3 個文件被更改
,包括
3 次插入
和
3 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libexec/rbenv-exec
+1
-1
libexec/rbenv-rehash
+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
Write
Preview
Loading…
取消
儲存