本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
isprogram
/
pyenv
镜像来自
https://github.com/pyenv/pyenv.git
關注
1
收藏
0
複製
0
程式碼
問題
0
Projects
0
版本發佈
240
Wiki
活動
瀏覽代碼
Use consistent quoting for `versions=("$@")` across bins
pull/254/head
Daniel Hahler
12 年之前
父節點
a43f7f5341
當前提交
9901c4b84d
共有
2 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libexec/pyenv-global
+1
-1
libexec/pyenv-local
+ 1
- 1
libexec/pyenv-global
查看文件
@ -21,7 +21,7 @@ if [ "$1" = "--complete" ]; then
exec pyenv-versions --bare
fi
versions=($@)
versions=(
"
$@
"
)
PYENV_VERSION_FILE="${PYENV_ROOT}/version"
if [ -n "$versions" ]; then
+ 1
- 1
libexec/pyenv-local
查看文件
@ -33,7 +33,7 @@ if [ "$1" = "--complete" ]; then
exec pyenv-versions --bare
fi
versions=($@)
versions=(
"
$@
"
)
if [ "$versions" = "--unset" ]; then
rm -f .python-version .pyenv-version
Write
Preview
Loading…
取消
儲存