This website works better with JavaScript.
首頁
探索
說明
登入
isprogram
/
pyenv
镜像来自
https://github.com/pyenv/pyenv.git
關註
1
收藏
0
複製
0
程式碼
問題管理
0
Projects
0
版本發佈
241
Wiki
Activity
瀏覽代碼
Add bin to list plugin scripts
pull/360/head^2
Joshua Peek
15 年之前
父節點
d289998250
當前提交
789ace54ec
共有
1 個文件被更改
,包括
19 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+19
-0
libexec/rbenv-plugin-scripts
+ 19
- 0
libexec/rbenv-plugin-scripts
查看文件
@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -e
[ -n "$RBENV_DEBUG" ] && set -x
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
echo exec
echo rehash
echo which
exit
fi
shopt -s nullglob
RBENV_EXEC_PLUGINS=(/etc/rbenv.d/$1/*.bash ${RBENV_ROOT}/rbenv.d/$1/*.bash)
shopt -u nullglob
for script in ${RBENV_EXEC_PLUGINS[@]}; do
echo $script
done
Write
Preview
Loading…
取消
儲存