Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
isprogram
/
pyenv
réplica de
https://github.com/pyenv/pyenv.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Projects
0
Lanzamientos
240
Wiki
Actividad
Explorar el Código
iterate over all matching plugins, not just the first
pull/360/head^2
Jamis Buck
hace 15 años
padre
c3089c8439
commit
5d8c40444d
Se han
modificado 3 ficheros
con
3 adiciones
y
3 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-1
libexec/rbenv-exec
+1
-1
libexec/rbenv-rehash
+1
-1
libexec/rbenv-which
+ 1
- 1
libexec/rbenv-exec
Ver fichero
@ -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
Ver fichero
@ -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
Ver fichero
@ -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
Escribir
Vista previa
Cargando…
Cancelar
Guardar