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
241
Wiki
Atividade
Ver código fonte
Merge pull request
#651
from yyuu/sh-help-stderr
Messages should not be written to stdout if the command is `sh-` command
pull/654/head
Yamashita, Yuu
10 anos atrás
committed by
GitHub
pai
24ba8ce904
25d3ca7fdf
commit
c803130a9d
1 arquivos alterados
com
5 adições
e
1 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+5
-1
libexec/pyenv
+ 5
- 1
libexec/pyenv
Ver arquivo
@ -122,7 +122,11 @@ case "$command" in
shift 1
if [ "$1" = --help ]; then
exec pyenv-help "$command"
if [[ "$command" == "sh-"* ]]; then
exec pyenv-help "$command" 1>&2
else
exec pyenv-help "$command"
fi
else
exec "$command_path" "$@"
fi
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar