Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
isprogram
/
pyenv
mirror da
https://github.com/pyenv/pyenv.git
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Projects
0
Rilasci
241
Wiki
Attività
Sfoglia il codice sorgente
add completion block for rbenv-help
pull/487/head^2
Jason Karns
10 anni fa
parent
c18a3f9042
commit
8c3cab61c7
1 ha cambiato i file
con
7 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+7
-0
libexec/rbenv-help
+ 7
- 0
libexec/rbenv-help
Vedi File
@ -15,6 +15,13 @@
set -e
[ -n "$RBENV_DEBUG" ] && set -x
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
echo --usage
rbenv-commands
exit
fi
command_path() {
local command="$1"
command -v rbenv-"$command" || command -v rbenv-sh-"$command" || true
Scrivi
Anteprima
Caricamento…
Annulla
Salva