Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
isprogram
/
pyenv
espelhamento de
https://github.com/pyenv/pyenv.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Projects
0
Versões
240
Wiki
Atividade
Ver código fonte
Use consistent quoting for `versions=("$@")` across bins
pull/254/head
Daniel Hahler
12 anos atrás
pai
a43f7f5341
commit
9901c4b84d
2 arquivos alterados
com
2 adições
e
2 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-1
libexec/pyenv-global
+1
-1
libexec/pyenv-local
+ 1
- 1
libexec/pyenv-global
Ver arquivo
@ -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
Ver arquivo
@ -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
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar