Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
Apua
Kirjaudu sisään
isprogram
/
pyenv
peilaus alkaen
https://github.com/pyenv/pyenv.git
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Projects
0
Julkaisut
241
Wiki
Toiminta
Selaa lähdekoodia
Merge pull request
#179
from johnwilliams/master
rbenv-init arguments should be allowed in any order
pull/360/head^2
Sam Stephenson
14 vuotta sitten
vanhempi
5d0a6630b9
f40bc773d2
commit
9ea1f7d53e
1 muutettua tiedostoa
jossa
12 lisäystä
ja
9 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-9
libexec/rbenv-init
+ 12
- 9
libexec/rbenv-init
Näytä tiedosto
@ -3,16 +3,19 @@ set -e
[ -n "$RBENV_DEBUG" ] && set -x
print=""
if [ "$1" = "-" ]; then
print=1
shift
fi
no_rehash=""
if [ "$1" = "--no-rehash" ]; then
no_rehash=1
shift
fi
for args in "$@"
do
if [ "$args" = "-" ]; then
print=1
shift
fi
if [ "$args" = "--no-rehash" ]; then
no_rehash=1
shift
fi
done
shell="$1"
if [ -z "$shell" ]; then
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna