本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
isprogram
/
pyenv
镜像来自
https://github.com/pyenv/pyenv.git
關注
1
收藏
0
複製
0
程式碼
問題
0
Projects
0
版本發佈
240
Wiki
活動
瀏覽代碼
iterate over all matching plugins, not just the first
pull/360/head^2
Jamis Buck
15 年之前
父節點
c3089c8439
當前提交
5d8c40444d
共有
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
查看文件
@ -12,7 +12,7 @@ shopt -s nullglob
RBENV_EXEC_PLUGINS=(/etc/rbenv.d/exec/*.bash ${HOME}/.rbenv/rbenv.d/exec/*.bash)
shopt -u nullglob
for script in $RBENV_EXEC_PLUGINS; do
for script in $
{
RBENV_EXEC_PLUGINS
[@]}
; do
source $script
done
+ 1
- 1
libexec/rbenv-rehash
查看文件
@ -23,6 +23,6 @@ shopt -s nullglob
RBENV_REHASH_PLUGINS=(/etc/rbenv.d/rehash/*.bash ${HOME}/.rbenv/rbenv.d/rehash/*.bash)
shopt -u nullglob
for script in $RBENV_REHASH_PLUGINS; do
for script in $
{
RBENV_REHASH_PLUGINS
[@]}
; do
source $script
done
+ 1
- 1
libexec/rbenv-which
查看文件
@ -8,7 +8,7 @@ shopt -s nullglob
RBENV_WHICH_PLUGINS=(/etc/rbenv.d/which/*.bash ${HOME}/.rbenv/rbenv.d/which/*.bash)
shopt -u nullglob
for script in $RBENV_WHICH_PLUGINS; do
for script in $
{
RBENV_WHICH_PLUGINS
[@]}
; do
source $script
done
Write
Preview
Loading…
取消
儲存